diff --git a/superset-frontend/cypress-base/cypress/e2e/dashboard/editmode.test.ts b/superset-frontend/cypress-base/cypress/e2e/dashboard/editmode.test.ts index 35cb030cbc988..416af35182288 100644 --- a/superset-frontend/cypress-base/cypress/e2e/dashboard/editmode.test.ts +++ b/superset-frontend/cypress-base/cypress/e2e/dashboard/editmode.test.ts @@ -230,7 +230,7 @@ describe('Dashboard edit', () => { '[data-test-chart-name="Top 10 California Names Timeseries"] .line .nv-legend-symbol', ) .first() - .should('have.css', 'fill', 'rgb(51, 217, 193)'); + .should('have.css', 'fill', 'rgb(51, 61, 71)'); // open 2nd main tab openTab(0, 1); @@ -239,7 +239,7 @@ describe('Dashboard edit', () => { // label Anthony cy.get('[data-test-chart-name="Trends"] .line .nv-legend-symbol') .eq(2) - .should('have.css', 'fill', 'rgb(51, 217, 193)'); + .should('have.css', 'fill', 'rgb(51, 61, 71)'); }); it('should apply same color to same labels with no color scheme set', () => { @@ -393,7 +393,7 @@ describe('Dashboard edit', () => { '[data-test-chart-name="Top 10 California Names Timeseries"] .line .nv-legend-symbol', ) .eq(2) - .should('have.css', 'fill', 'rgb(168, 104, 183)'); + .should('have.css', 'fill', 'rgb(163, 143, 121)'); openProperties(); cy.get('[aria-label="Select color scheme"]').should('have.value', ''); @@ -422,17 +422,17 @@ describe('Dashboard edit', () => { '[data-test-chart-name="Top 10 California Names Timeseries"] .line .nv-legend-symbol', ) .first() - .should('have.css', 'fill', 'rgb(69, 78, 124)'); + .should('have.css', 'fill', 'rgb(252, 199, 0)'); cy.get( '[data-test-chart-name="Top 10 California Names Timeseries"] .line .nv-legend-symbol', ) .eq(1) - .should('have.css', 'fill', 'rgb(224, 67, 85)'); + .should('have.css', 'fill', 'rgb(143, 211, 228)'); cy.get( '[data-test-chart-name="Top 10 California Names Timeseries"] .line .nv-legend-symbol', ) .eq(2) - .should('have.css', 'fill', 'rgb(168, 104, 183)'); + .should('have.css', 'fill', 'rgb(172, 225, 196)'); }); it('should show the same colors in Explore', () => { @@ -463,7 +463,7 @@ describe('Dashboard edit', () => { '[data-test-chart-name="Top 10 California Names Timeseries"] .line .nv-legend-symbol', ) .eq(1) - .should('have.css', 'fill', 'rgb(157, 172, 185)'); + .should('have.css', 'fill', 'rgb(51, 61, 71)'); openExplore('Top 10 California Names Timeseries'); @@ -495,7 +495,7 @@ describe('Dashboard edit', () => { '[data-test-chart-name="Top 10 California Names Timeseries"] .line .nv-legend-symbol', ) .first() - .should('have.css', 'fill', 'rgb(51, 217, 193)'); + .should('have.css', 'fill', 'rgb(51, 61, 71)'); // open 2nd main tab openTab(0, 1); @@ -504,7 +504,7 @@ describe('Dashboard edit', () => { // label Anthony cy.get('[data-test-chart-name="Trends"] .line .nv-legend-symbol') .eq(2) - .should('have.css', 'fill', 'rgb(51, 217, 193)'); + .should('have.css', 'fill', 'rgb(51, 61, 71)'); editDashboard(); openProperties(); @@ -541,7 +541,7 @@ describe('Dashboard edit', () => { cy.get('[data-test-chart-name="Trends"] .line .nv-legend-symbol') .first() - .should('have.css', 'fill', 'rgb(234, 11, 140)'); + .should('have.css', 'fill', 'rgb(51, 61, 71)'); }); it('should apply the color scheme across main tabs for rendered charts', () => { @@ -557,7 +557,7 @@ describe('Dashboard edit', () => { cy.get('[data-test-chart-name="Trends"] .line .nv-legend-symbol') .first() - .should('have.css', 'fill', 'rgb(140, 224, 113)'); + .should('have.css', 'fill', 'rgb(204, 0, 134)'); // change scheme now that charts are rendered across the main tabs editDashboard(); @@ -587,7 +587,7 @@ describe('Dashboard edit', () => { '[data-test-chart-name="Top 10 California Names Timeseries"] .line .nv-legend-symbol', ) .first() - .should('have.css', 'fill', 'rgb(51, 217, 193)'); + .should('have.css', 'fill', 'rgb(51, 61, 71)'); // open another nested tab openTab(2, 1); diff --git a/superset-frontend/src/dashboard/components/PropertiesModal/index.tsx b/superset-frontend/src/dashboard/components/PropertiesModal/index.tsx index 651985232463a..2e9f54cffcaba 100644 --- a/superset-frontend/src/dashboard/components/PropertiesModal/index.tsx +++ b/superset-frontend/src/dashboard/components/PropertiesModal/index.tsx @@ -17,6 +17,7 @@ * under the License. */ import React, { useCallback, useEffect, useMemo, useState } from 'react'; +import { omit } from 'lodash'; import { Input } from 'src/components/Input'; import { FormItem } from 'src/components/Form'; import jsonStringify from 'json-stringify-pretty-compact'; @@ -194,15 +195,11 @@ const PropertiesModal = ({ setRoles(roles); setColorScheme(metadata.color_scheme); - // temporary fix to remove positions from dashboards' metadata - if (metadata?.positions) { - delete metadata.positions; - } - const metaDataCopy = { ...metadata }; - - delete metaDataCopy.shared_label_colors; - - delete metaDataCopy.color_scheme_domain; + const metaDataCopy = omit(metadata, [ + 'positions', + 'shared_label_colors', + 'color_scheme_domain', + ]); setJsonMetadata(metaDataCopy ? jsonStringify(metaDataCopy) : ''); }, diff --git a/superset/translations/de/LC_MESSAGES/messages.po b/superset/translations/de/LC_MESSAGES/messages.po index 216821fd385ab..add584cb2e65b 100644 --- a/superset/translations/de/LC_MESSAGES/messages.po +++ b/superset/translations/de/LC_MESSAGES/messages.po @@ -146,7 +146,7 @@ msgstr "" msgid " to visualize your data." msgstr " , um Ihre Daten zu visualisieren." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:116 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 msgid "!= (Is not equal)" msgstr "!= (Ist nicht gleich)" @@ -666,7 +666,7 @@ msgstr "vor 3 Jahren" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 msgid "30 days" msgstr "30 Tage" @@ -742,7 +742,7 @@ msgstr "52 Wochen, beginnend am Montag (freq=52W-MON)" msgid "6 hour" msgstr "6 Stunden" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:135 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 msgid "60 days" msgstr "60 Tage" @@ -768,7 +768,7 @@ msgstr "wöchentlich (7D)" msgid "9/91 percentiles" msgstr "9/91 Perzentile" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:139 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 msgid "90 days" msgstr "90 Tage" @@ -776,11 +776,11 @@ msgstr "90 Tage" msgid ":" msgstr ":" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:96 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 msgid "< (Smaller than)" msgstr "< (Kleiner als)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:104 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 msgid "<= (Smaller or equal)" msgstr "<= (Kleiner oder gleich)" @@ -805,15 +805,15 @@ msgstr "" msgid "" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:112 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 msgid "== (Is equal)" msgstr "== (Ist gleich)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:100 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 msgid "> (Larger than)" msgstr "> (Größer als)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:108 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 msgid ">= (Larger or equal)" msgstr ">= (Größer oder gleich)" @@ -873,7 +873,7 @@ msgstr "" "Eine Liste der Domänennamen, die dieses Dashboard einbetten können. Wenn " "Sie dieses Feld leer lassen, können Sie von jeder Domäne aus einbetten." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:755 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:752 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:445 msgid "A list of tags that have been applied to this chart." msgstr "Eine Liste der Tags, die auf dieses Diagramm angewendet wurden." @@ -912,7 +912,7 @@ msgstr "" "wird, durch seine Fläche und nicht durch seinen Radius oder Sweep-Winkel " "veranschaulicht wird." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:700 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 msgid "A readable URL for your dashboard" msgstr "Eine sprechende URL für Ihr Dashboard" @@ -974,7 +974,7 @@ msgstr "Beim Generieren eines Datenextrakts ist ein Timeout aufgetreten." msgid "A timeout occurred while taking a screenshot." msgstr "Beim Erstellen eines Screenshots ist ein Timeout aufgetreten." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:299 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 msgid "A valid color scheme is required" msgstr "Ein gültiges Farbschema ist erforderlich" @@ -1008,8 +1008,8 @@ msgstr "Y-ACHSE TITEL POSITION" msgid "About" msgstr "Über" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:479 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:522 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:476 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:519 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:411 msgid "Access" msgstr "Zugang" @@ -1054,7 +1054,7 @@ msgstr "Aktionsprotokoll" msgid "Actions" msgstr "Aktion" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:386 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 #: superset-frontend/src/pages/AlertReportList/index.tsx:355 msgid "Active" msgstr "Aktiv" @@ -1094,7 +1094,7 @@ msgstr "Adaptative Formatierung" msgid "Add" msgstr "Hinzufügen" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 msgid "Add Alert" msgstr "Alarm hinzufügen" @@ -1130,7 +1130,7 @@ msgstr "Protokoll hinzufügen" msgid "Add Metric" msgstr "Metrik hinzufügen" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 msgid "Add Report" msgstr "Report hinzufügen" @@ -1267,7 +1267,7 @@ msgstr "Neuen Farbformatierer hinzufügen" msgid "Add new formatter" msgstr "Neuen Formatierer hinzufügen" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:374 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add notification method" msgstr "Benachrichtigungsmethode hinzufügen" @@ -1374,7 +1374,7 @@ msgstr "Leistungseinstellungen dieser Datenbank anpassen." #: 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/dashboard/components/PropertiesModal/index.tsx:768 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" @@ -1507,11 +1507,11 @@ msgstr "Alarm" msgid "Alert Triggered, In Grace Period" msgstr "Alarm ausgelöst, in Kulanzzeit" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 msgid "Alert condition" msgstr "Alarmierungsbedingung" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Alert condition schedule" msgstr "Alarmierung-Zeitplan" @@ -1531,7 +1531,7 @@ msgstr "Alarm während Karenzzeit ausgelöst." msgid "Alert found an error while executing a query." msgstr "Alarm ist beim Ausführen einer Abfrage auf einen Fehler gestoßen." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 msgid "Alert name" msgstr "Name des Alarms" @@ -1804,7 +1804,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:128 #: 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 @@ -2343,7 +2343,7 @@ msgstr "Anmerkungen konnten nicht gelöscht werden." msgid "Any" msgstr "Beliebig" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:729 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:726 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:393 msgid "Any additional detail to show in the certification tooltip." msgstr "" @@ -2401,7 +2401,7 @@ msgstr "" "stellen Sie sicher, dass die Quellabfrage die im rollierenden Fenster " "definierten Mindestzeiträume erfüllt." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:113 #: 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 @@ -2741,7 +2741,7 @@ msgstr "" msgid "Basic" msgstr "Basic" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:682 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:679 #: 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 @@ -3164,7 +3164,7 @@ msgstr "Überschneidungen zwischen Zeitreihen und Aufschlüsselungen nicht zulä #: 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/PropertiesModal/index.tsx:646 #: 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 @@ -3306,7 +3306,7 @@ msgstr "Zentriert" msgid "Centroid (Longitude and Latitude): " msgstr "Schwerpunkt (Längen- und Breitengrad): " -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:709 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 msgid "Certification" msgstr "Zertifizierung" @@ -3315,7 +3315,7 @@ msgstr "Zertifizierung" #: 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/dashboard/components/PropertiesModal/index.tsx:720 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 msgid "Certification details" @@ -3334,7 +3334,7 @@ msgstr "Zertifiziert durch" #: 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/dashboard/components/PropertiesModal/index.tsx:711 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 msgid "Certified by" @@ -3434,7 +3434,7 @@ 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/alerts/AlertReportModal.tsx:406 #: 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 @@ -4088,7 +4088,7 @@ msgstr "" "bestimmten Zelle im Vergleich zu den anderen Zellen im ausgewählten " "Bereich schattiert: " -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:500 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 msgid "Colors" msgstr "Farben" @@ -4418,7 +4418,7 @@ msgstr "" msgid "Compute the contribution to the total" msgstr "Berechnen des Beitrags zur Gesamtsumme" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 msgid "Condition" msgstr "Bedingung" @@ -5032,7 +5032,7 @@ msgstr "Dunkeltürkis" msgid "Dark mode" msgstr "Dunkelmodus" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/home/DashboardTable.tsx:194 #: superset-frontend/src/features/home/RightMenu.tsx:228 #: superset-frontend/src/pages/DashboardList/index.tsx:672 @@ -5073,11 +5073,11 @@ msgstr "Dashboard importiert" msgid "Dashboard parameters are invalid." msgstr "Dashboard-Parameter sind ungültig." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:639 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 msgid "Dashboard properties" msgstr "Dashboardeigenschaften bearbeiten" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:447 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 msgid "Dashboard properties updated" msgstr "Dashboard-Eigenschaften aktualisiert" @@ -6551,7 +6551,7 @@ msgstr "Kantenbreite" msgid "Edit" msgstr "Bearbeiten" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 msgid "Edit Alert" msgstr "Alarm bearbeiten" @@ -6603,7 +6603,7 @@ msgstr "Metrik bearbeiten" msgid "Edit Plugin" msgstr "Plugin bearbeiten" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:378 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 msgid "Edit Report" msgstr "Report bearbeiten" @@ -6969,8 +6969,8 @@ msgid "Equal to (=)" msgstr "Ist gleich (==)" #: 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/dashboard/components/PropertiesModal/index.tsx:140 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:295 #: 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 @@ -7970,7 +7970,7 @@ msgstr "Gold" msgid "Google Sheet Name and URL" msgstr "Google Tabellen-Name und URL" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Grace period" msgstr "Kulanzzeit" @@ -8273,7 +8273,7 @@ msgstr "" "(Nichts tun), Ersetzen (Tabelle löschen und neu erstellen) oder Anhängen " "(Daten einfügen)." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 msgid "Ignore cache when generating screenshot" msgstr "Cache beim Generieren eines Screenshots ignorieren" @@ -8712,12 +8712,12 @@ msgstr "JSON" msgid "JSON Metadata" msgstr "JSON-Metadaten" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:776 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:773 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:336 msgid "JSON metadata" msgstr "JSON Metadaten" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 msgid "JSON metadata is invalid!" msgstr "JSON-Metadaten sind ungültig!" @@ -9310,7 +9310,7 @@ msgstr "Suchen des Diagramms" msgid "Log Scale" msgstr "Logarithmische Skala" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 msgid "Log retention" msgstr "Protokollaufbewahrung" @@ -10528,7 +10528,7 @@ msgstr "Knotengröße" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 msgid "None" msgstr "Keine" @@ -10576,7 +10576,7 @@ msgstr "Ist nicht gleich (≠)" msgid "Not in" msgstr "Nicht in" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:120 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 msgid "Not null" msgstr "Nicht NULL" @@ -10593,7 +10593,7 @@ msgstr "Nicht aktuell" msgid "Nothing triggered" msgstr "Nichts ausgelöst" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 #: superset-frontend/src/pages/AlertReportList/index.tsx:302 msgid "Notification method" msgstr "Benachrichtigungsmethode" @@ -11167,12 +11167,12 @@ msgstr "Besitzer*in" #: 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:477 #: 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/dashboard/components/PropertiesModal/index.tsx:524 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:528 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:254 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 #: superset-frontend/src/pages/DatasetList/index.tsx:400 @@ -11192,8 +11192,8 @@ msgstr "" "Besitzende ist eine Liste von Benutzer*innen, die das Dashboard ändern " "können." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:494 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:542 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:491 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:539 msgid "" "Owners is a list of users who can alter the dashboard. Searchable by name" " or username." @@ -11387,7 +11387,7 @@ msgstr "Perioden müssen eine ganze Zahl sein" msgid "Person or group that has certified this chart." msgstr "Person oder Gruppe, die dieses Diagramm zertifiziert hat." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:718 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 msgid "Person or group that has certified this dashboard." msgstr "Person oder Gruppe, die dieses Dashboard zertifiziert hat." @@ -11532,7 +11532,7 @@ msgstr "Pixel" msgid "Plain" msgstr "Unformatiert" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:795 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 msgid "Please DO NOT overwrite the \"filter_scopes\" key." msgstr "Bitte überschreiben Sie den \"filter_scopes“-Schlüssel NICHT." @@ -12561,11 +12561,11 @@ msgstr "Fehler melden" msgid "Report failed" msgstr "Report fehlgeschlagen" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 msgid "Report name" msgstr "Name des Reports" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 msgid "Report schedule" msgstr "Report-Zeitplan" @@ -12771,6 +12771,7 @@ msgstr "" #: 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:545 #: 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 @@ -12780,7 +12781,7 @@ msgstr "" msgid "Roles" msgstr "Rollen" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:562 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:559 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 " @@ -13040,7 +13041,7 @@ msgstr "" "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/alerts/AlertReportModal.tsx:390 #: superset-frontend/src/features/home/SavedQueries.tsx:261 msgid "SQL Query" msgstr "SQL Abfrage" @@ -13182,7 +13183,7 @@ msgstr "Samstag" #: 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/PropertiesModal/index.tsx:113 #: 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 @@ -13201,7 +13202,7 @@ msgstr "Samstag" #: 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/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 @@ -13391,7 +13392,7 @@ msgstr "Planen von E-Mail-Reports" msgid "Schedule query" msgstr "Abfrage einplanen" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 msgid "Schedule settings" msgstr "Zeitplan-Einstellungen" @@ -13841,15 +13842,15 @@ 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." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 msgid "Send as CSV" msgstr "Als CSV senden" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:406 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 msgid "Send as PNG" msgstr "Als PNG senden" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 msgid "Send as text" msgstr "Als Text senden" @@ -15240,7 +15241,7 @@ msgid "Tagged Object could not be deleted." msgstr "Getaggtes Object konnte nicht gelöscht werden." #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:736 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:733 #: 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 @@ -15464,7 +15465,7 @@ msgid "" "[country] column" msgstr "Der Ländercodestandard, den Superset in der Spalte [Land] erwarten sollte" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:465 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 msgid "The dashboard has been saved" msgstr "Dashboard wurde erfolgreich gespeichert" @@ -15982,7 +15983,7 @@ msgstr "" msgid "The query contains one or more malformed template parameters." msgstr "Die Abfrage enthält einen oder mehrere fehlerhafte Vorlagenparameter." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:108 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 msgid "The query couldn't be loaded" msgstr "Die Abfrage konnte nicht geladen werden" @@ -16505,7 +16506,7 @@ msgstr "" " 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 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:786 #: superset/views/dashboard/mixin.py:58 msgid "" "This JSON object is generated dynamically when clicking the save or " @@ -16627,7 +16628,7 @@ msgstr "" "Dieses Dashboard aktualisiert sich automatisch. Die nächste automatische " "Aktualisierung erfolgt in %s." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:661 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 msgid "This dashboard is managed externally, and can't be edited in Superset" msgstr "" "Dieses Dashboard wird extern verwaltet und kann nicht in Superset " @@ -16871,7 +16872,7 @@ msgstr "Dadurch wird Ihre aktuelle Embedded-Konfiguration entfernt." msgid "Threshold alpha level for determining significance" msgstr "Schwellenwert für Alpha-Level zur Bestimmung der Signifikanz" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 msgid "Threshold value should be double precision number" msgstr "Der Schwellwert sollte eine Zahl mit doppelter Genauigkeit sein." @@ -17072,7 +17073,7 @@ msgstr "Zeiteinteilung fehlt" msgid "Time granularity" msgstr "Zeitgranularität" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 msgid "Time in seconds" msgstr "Zeit in Sekunden" @@ -17258,7 +17259,7 @@ msgstr "Sehr klein" #: 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/PropertiesModal/index.tsx:684 #: 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 @@ -17324,7 +17325,7 @@ msgstr "Oben rechts" msgid "Top to Bottom" msgstr "Oben nach unten" -#: superset/viz.py:1010 +#: superset/viz.py:1047 #, fuzzy msgid "Total" msgstr "der Gesamtsumme" @@ -17412,7 +17413,7 @@ msgstr "Trend" msgid "Triangle" msgstr "Dreieck" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 msgid "Trigger Alert If..." msgstr "Alarm auslösen falls..." @@ -17547,7 +17548,7 @@ msgstr "URL-Parameter" msgid "URL parameters" msgstr "URL-Parameter" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:696 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 msgid "URL slug" msgstr "URL Titelform" @@ -17854,7 +17855,7 @@ msgstr "Datei in Datenbank hochladen" msgid "Usage" msgstr "Verwendung" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:802 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 #, python-format msgid "Use \"%(menuName)s\" menu instead." msgstr "Verwenden Sie stattdessen das Menü \"%(menuName)s\"." @@ -18056,7 +18057,7 @@ msgstr "" #: 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/features/alerts/AlertReportModal.tsx:393 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 msgid "Value" msgstr "Wert" @@ -19003,7 +19004,7 @@ msgstr "Wort-Rotation" msgid "Working" msgstr "In Bearbeitung" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 msgid "Working timeout" msgstr "Zeitüberschreitung" @@ -19544,7 +19545,7 @@ msgstr "" msgid "Your query could not be saved" msgstr "Ihre Abfrage konnte nicht gespeichert werden" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:179 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 msgid "Your query could not be scheduled" msgstr "Ihre Abfrage konnte nicht eingeplant werden" @@ -19552,7 +19553,7 @@ msgstr "Ihre Abfrage konnte nicht eingeplant werden" msgid "Your query could not be updated" msgstr "Ihre Abfrage konnte nicht aktualisiert werden." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:172 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 msgid "" "Your query has been scheduled. To see details of your query, navigate to " "Saved queries" @@ -20600,7 +20601,7 @@ msgstr "gespeicherte Abfragen" msgid "search by tags" msgstr "Suche nach Tags" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 msgid "seconds" msgstr "Sekunden" diff --git a/superset/translations/en/LC_MESSAGES/messages.po b/superset/translations/en/LC_MESSAGES/messages.po index e12b0e47b522a..77f32f7638d1e 100644 --- a/superset/translations/en/LC_MESSAGES/messages.po +++ b/superset/translations/en/LC_MESSAGES/messages.po @@ -115,7 +115,7 @@ msgstr "" msgid " to visualize your data." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:116 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 msgid "!= (Is not equal)" msgstr "" @@ -602,7 +602,7 @@ msgstr "" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 msgid "30 days" msgstr "" @@ -678,7 +678,7 @@ msgstr "" msgid "6 hour" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:135 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 msgid "60 days" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "9/91 percentiles" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:139 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 msgid "90 days" msgstr "" @@ -712,11 +712,11 @@ msgstr "" msgid ":" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:96 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 msgid "< (Smaller than)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:104 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 msgid "<= (Smaller or equal)" msgstr "" @@ -741,15 +741,15 @@ msgstr "" msgid "" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:112 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 msgid "== (Is equal)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:100 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 msgid "> (Larger than)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:108 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 msgid ">= (Larger or equal)" msgstr "" @@ -799,7 +799,7 @@ msgid "" "empty will allow embedding from any domain." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:755 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:752 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:445 msgid "A list of tags that have been applied to this chart." msgstr "" @@ -830,7 +830,7 @@ msgid "" " rather than its radius or sweep angle." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:700 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 msgid "A readable URL for your dashboard" msgstr "" @@ -885,7 +885,7 @@ msgstr "" msgid "A timeout occurred while taking a screenshot." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:299 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 msgid "A valid color scheme is required" msgstr "" @@ -919,8 +919,8 @@ msgstr "" msgid "About" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:479 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:522 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:476 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:519 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:411 msgid "Access" msgstr "" @@ -965,7 +965,7 @@ msgstr "" msgid "Actions" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:386 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 #: superset-frontend/src/pages/AlertReportList/index.tsx:355 msgid "Active" msgstr "" @@ -1005,7 +1005,7 @@ msgstr "" msgid "Add" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 msgid "Add Alert" msgstr "" @@ -1041,7 +1041,7 @@ msgstr "" msgid "Add Metric" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 msgid "Add Report" msgstr "" @@ -1162,7 +1162,7 @@ msgstr "" msgid "Add new formatter" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:374 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add notification method" msgstr "" @@ -1265,7 +1265,7 @@ msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:768 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" @@ -1391,11 +1391,11 @@ msgstr "" msgid "Alert Triggered, In Grace Period" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 msgid "Alert condition" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Alert condition schedule" msgstr "" @@ -1415,7 +1415,7 @@ msgstr "" msgid "Alert found an error while executing a query." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 msgid "Alert name" msgstr "" @@ -1668,7 +1668,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:128 #: 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 @@ -2158,7 +2158,7 @@ msgstr "" msgid "Any" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:729 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:726 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:393 msgid "Any additional detail to show in the certification tooltip." msgstr "" @@ -2205,7 +2205,7 @@ msgid "" "source query satisfies the minimum periods defined in the rolling window." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:113 #: 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 @@ -2533,7 +2533,7 @@ msgstr "" msgid "Basic" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:682 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:679 #: 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 @@ -2920,7 +2920,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:646 #: 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 @@ -3059,7 +3059,7 @@ msgstr "" msgid "Centroid (Longitude and Latitude): " msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:709 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 msgid "Certification" msgstr "" @@ -3068,7 +3068,7 @@ msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:720 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 msgid "Certification details" @@ -3087,7 +3087,7 @@ msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:711 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 msgid "Certified by" @@ -3181,7 +3181,7 @@ 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/alerts/AlertReportModal.tsx:406 #: 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 @@ -3796,7 +3796,7 @@ msgid "" "cell against the other cells in the selected range: " msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:500 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 msgid "Colors" msgstr "" @@ -4090,7 +4090,7 @@ msgstr "" msgid "Compute the contribution to the total" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 msgid "Condition" msgstr "" @@ -4676,7 +4676,7 @@ msgstr "" msgid "Dark mode" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/home/DashboardTable.tsx:194 #: superset-frontend/src/features/home/RightMenu.tsx:228 #: superset-frontend/src/pages/DashboardList/index.tsx:672 @@ -4717,11 +4717,11 @@ msgstr "" msgid "Dashboard parameters are invalid." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:639 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 msgid "Dashboard properties" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:447 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 msgid "Dashboard properties updated" msgstr "" @@ -6090,7 +6090,7 @@ msgstr "" msgid "Edit" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 msgid "Edit Alert" msgstr "" @@ -6142,7 +6142,7 @@ msgstr "" msgid "Edit Plugin" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:378 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 msgid "Edit Report" msgstr "" @@ -6496,8 +6496,8 @@ msgid "Equal to (=)" msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:140 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:295 #: 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 @@ -7445,7 +7445,7 @@ msgstr "" msgid "Google Sheet Name and URL" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Grace period" msgstr "" @@ -7719,7 +7719,7 @@ msgid "" " and recreate table) or Append (insert data)." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 msgid "Ignore cache when generating screenshot" msgstr "" @@ -8137,12 +8137,12 @@ msgstr "" msgid "JSON Metadata" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:776 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:773 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:336 msgid "JSON metadata" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 msgid "JSON metadata is invalid!" msgstr "" @@ -8704,7 +8704,7 @@ msgstr "" msgid "Log Scale" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 msgid "Log retention" msgstr "" @@ -9879,7 +9879,7 @@ msgstr "" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 msgid "None" msgstr "" @@ -9927,7 +9927,7 @@ msgstr "" msgid "Not in" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:120 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 msgid "Not null" msgstr "" @@ -9944,7 +9944,7 @@ msgstr "" msgid "Nothing triggered" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 #: superset-frontend/src/pages/AlertReportList/index.tsx:302 msgid "Notification method" msgstr "" @@ -10472,12 +10472,12 @@ msgstr "" #: 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:477 #: 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/dashboard/components/PropertiesModal/index.tsx:524 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:528 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:254 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 #: superset-frontend/src/pages/DatasetList/index.tsx:400 @@ -10495,8 +10495,8 @@ msgstr "" msgid "Owners is a list of users who can alter the dashboard." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:494 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:542 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:491 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:539 msgid "" "Owners is a list of users who can alter the dashboard. Searchable by name" " or username." @@ -10684,7 +10684,7 @@ msgstr "" msgid "Person or group that has certified this chart." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:718 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 msgid "Person or group that has certified this dashboard." msgstr "" @@ -10819,7 +10819,7 @@ msgstr "" msgid "Plain" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:795 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 msgid "Please DO NOT overwrite the \"filter_scopes\" key." msgstr "" @@ -11790,11 +11790,11 @@ msgstr "" msgid "Report failed" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 msgid "Report name" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 msgid "Report schedule" msgstr "" @@ -11994,6 +11994,7 @@ msgstr "" #: 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:545 #: 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 @@ -12003,7 +12004,7 @@ msgstr "" msgid "Roles" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:562 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:559 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 " @@ -12238,7 +12239,7 @@ msgid "" "Note that you will need to close other SQL Lab windows before you do this." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 #: superset-frontend/src/features/home/SavedQueries.tsx:261 msgid "SQL Query" msgstr "" @@ -12380,7 +12381,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:113 #: 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 @@ -12399,7 +12400,7 @@ msgstr "" #: 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/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 @@ -12584,7 +12585,7 @@ msgstr "" msgid "Schedule query" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 msgid "Schedule settings" msgstr "" @@ -13019,15 +13020,15 @@ msgid "" "query by clicking on the %s button." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 msgid "Send as CSV" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:406 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 msgid "Send as PNG" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 msgid "Send as text" msgstr "" @@ -14344,7 +14345,7 @@ msgid "Tagged Object could not be deleted." msgstr "" #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:736 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:733 #: 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 @@ -14532,7 +14533,7 @@ msgid "" "[country] column" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:465 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 msgid "The dashboard has been saved" msgstr "" @@ -14932,7 +14933,7 @@ msgstr "" msgid "The query contains one or more malformed template parameters." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:108 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 msgid "The query couldn't be loaded" msgstr "" @@ -15382,7 +15383,7 @@ msgid "" "parameters." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:789 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:786 #: superset/views/dashboard/mixin.py:58 msgid "" "This JSON object is generated dynamically when clicking the save or " @@ -15475,7 +15476,7 @@ msgid "" "be in %s." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:661 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 msgid "This dashboard is managed externally, and can't be edited in Superset" msgstr "" @@ -15672,7 +15673,7 @@ msgstr "" msgid "Threshold alpha level for determining significance" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 msgid "Threshold value should be double precision number" msgstr "" @@ -15867,7 +15868,7 @@ msgstr "" msgid "Time granularity" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 msgid "Time in seconds" msgstr "" @@ -16028,7 +16029,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:684 #: 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 @@ -16092,7 +16093,7 @@ msgstr "" msgid "Top to Bottom" msgstr "" -#: superset/viz.py:1010 +#: superset/viz.py:1047 msgid "Total" msgstr "" @@ -16179,7 +16180,7 @@ msgstr "" msgid "Triangle" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 msgid "Trigger Alert If..." msgstr "" @@ -16308,7 +16309,7 @@ msgstr "" msgid "URL parameters" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:696 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 msgid "URL slug" msgstr "" @@ -16582,7 +16583,7 @@ msgstr "" msgid "Usage" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:802 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 #, python-format msgid "Use \"%(menuName)s\" menu instead." msgstr "" @@ -16755,7 +16756,7 @@ msgstr "" #: 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/features/alerts/AlertReportModal.tsx:393 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 msgid "Value" msgstr "" @@ -17572,7 +17573,7 @@ msgstr "" msgid "Working" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 msgid "Working timeout" msgstr "" @@ -18060,7 +18061,7 @@ msgstr "" msgid "Your query could not be saved" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:179 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 msgid "Your query could not be scheduled" msgstr "" @@ -18068,7 +18069,7 @@ msgstr "" msgid "Your query could not be updated" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:172 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 msgid "" "Your query has been scheduled. To see details of your query, navigate to " "Saved queries" @@ -19091,7 +19092,7 @@ msgstr "" msgid "search by tags" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 msgid "seconds" msgstr "" diff --git a/superset/translations/es/LC_MESSAGES/messages.po b/superset/translations/es/LC_MESSAGES/messages.po index 93a86f5943820..08f505b40d91f 100644 --- a/superset/translations/es/LC_MESSAGES/messages.po +++ b/superset/translations/es/LC_MESSAGES/messages.po @@ -120,7 +120,7 @@ msgstr "" msgid " to visualize your data." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:116 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 msgid "!= (Is not equal)" msgstr "!= (No es igual)" @@ -625,7 +625,7 @@ msgstr "" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 msgid "30 days" msgstr "30 días" @@ -709,7 +709,7 @@ msgstr "" msgid "6 hour" msgstr "6 horas" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:135 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 msgid "60 days" msgstr "60 días" @@ -736,7 +736,7 @@ msgstr "" msgid "9/91 percentiles" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:139 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 msgid "90 days" msgstr "90 días" @@ -744,11 +744,11 @@ msgstr "90 días" msgid ":" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:96 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 msgid "< (Smaller than)" msgstr "< (Menor que)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:104 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 msgid "<= (Smaller or equal)" msgstr "<= (Menor o igual)" @@ -777,15 +777,15 @@ msgstr "Espacial" msgid "" msgstr "Tipo de dato" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:112 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 msgid "== (Is equal)" msgstr "== (Igual)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:100 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 msgid "> (Larger than)" msgstr "> (mayor que)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:108 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 msgid ">= (Larger or equal)" msgstr ">= (Mayor o igual)" @@ -845,7 +845,7 @@ msgid "" "empty will allow embedding from any domain." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:755 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:752 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:445 msgid "A list of tags that have been applied to this chart." msgstr "" @@ -876,7 +876,7 @@ msgid "" " rather than its radius or sweep angle." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:700 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 msgid "A readable URL for your dashboard" msgstr "Una URL amigable para el dashboard" @@ -937,7 +937,7 @@ msgstr "Se produjo un error al crear el origen de datos" msgid "A timeout occurred while taking a screenshot." msgstr "Se produjo un error al recuperar el estado de la pestaña" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:299 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 msgid "A valid color scheme is required" msgstr "Un esquema de colores válido es requerido" @@ -972,8 +972,8 @@ msgstr "última partición:" msgid "About" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:479 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:522 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:476 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:519 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:411 msgid "Access" msgstr "Acceso" @@ -1018,7 +1018,7 @@ msgstr "Bitácora de acciones" msgid "Actions" msgstr "Acciones" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:386 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 #: superset-frontend/src/pages/AlertReportList/index.tsx:355 msgid "Active" msgstr "Activo" @@ -1062,7 +1062,7 @@ msgstr "Formato Fecha/Hora" msgid "Add" msgstr "Agregar" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 #, fuzzy msgid "Add Alert" msgstr "alerta" @@ -1099,7 +1099,7 @@ msgstr "Agregar Registro" msgid "Add Metric" msgstr "Añadir Métrica" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 #, fuzzy msgid "Add Report" msgstr "informe" @@ -1229,7 +1229,7 @@ msgstr "" msgid "Add new formatter" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:374 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add notification method" msgstr "Agregar método de notificación" @@ -1342,7 +1342,7 @@ msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:768 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" @@ -1481,11 +1481,11 @@ msgstr "alerta" msgid "Alert Triggered, In Grace Period" msgstr "Alerta disparada, en periodo de gracia" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 msgid "Alert condition" msgstr "Probar Conexión" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Alert condition schedule" msgstr "Probar Conexión" @@ -1505,7 +1505,7 @@ msgstr "La alerta saltó durante el periodo de gracia." msgid "Alert found an error while executing a query." msgstr "La alerta encontró un error al ejecutar una consulta." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 msgid "Alert name" msgstr "Nombre de la alerta" @@ -1766,7 +1766,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:128 #: 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 @@ -2304,7 +2304,7 @@ msgstr "Las anotaciones no han podido eliminarse." msgid "Any" msgstr "día" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:729 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:726 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:393 msgid "Any additional detail to show in the certification tooltip." msgstr "" @@ -2351,7 +2351,7 @@ msgid "" "source query satisfies the minimum periods defined in the rolling window." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:113 #: 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 @@ -2714,7 +2714,7 @@ msgstr "" msgid "Basic" msgstr "Básico" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:682 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:679 #: 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 @@ -3114,7 +3114,7 @@ msgstr "No puede haber solapamiento entre Series y Distribuciones" #: 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/PropertiesModal/index.tsx:646 #: 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 @@ -3264,7 +3264,7 @@ msgstr "Recientes" msgid "Centroid (Longitude and Latitude): " msgstr "Longitud/latitud inválidas" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:709 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 #, fuzzy msgid "Certification" @@ -3274,7 +3274,7 @@ msgstr "Certificado raíz" #: 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/dashboard/components/PropertiesModal/index.tsx:720 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 msgid "Certification details" @@ -3295,7 +3295,7 @@ 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/dashboard/components/PropertiesModal/index.tsx:711 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 msgid "Certified by" @@ -3392,7 +3392,7 @@ 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/alerts/AlertReportModal.tsx:406 #: 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 @@ -4052,7 +4052,7 @@ msgid "" "cell against the other cells in the selected range: " msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:500 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 msgid "Colors" msgstr "Colores" @@ -4367,7 +4367,7 @@ msgstr "" msgid "Compute the contribution to the total" msgstr "Calcular la contribución al total" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 #, fuzzy msgid "Condition" msgstr "Probar Conexión" @@ -4993,7 +4993,7 @@ msgstr "" msgid "Dark mode" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/home/DashboardTable.tsx:194 #: superset-frontend/src/features/home/RightMenu.tsx:228 #: superset-frontend/src/pages/DashboardList/index.tsx:672 @@ -5035,11 +5035,11 @@ msgstr "Propiedades del Dashboard" msgid "Dashboard parameters are invalid." msgstr "Parámetros de Dashboard inválidos." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:639 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 msgid "Dashboard properties" msgstr "Propiedades del Dashboard" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:447 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 #, fuzzy msgid "Dashboard properties updated" msgstr "Propiedades del Dashboard" @@ -6488,7 +6488,7 @@ msgstr "Grosor de línea" msgid "Edit" msgstr "Editar" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 #, fuzzy msgid "Edit Alert" msgstr "Esitar Tabla" @@ -6542,7 +6542,7 @@ msgstr "Editar Métrica" msgid "Edit Plugin" msgstr "Editar Columna" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:378 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 #, fuzzy msgid "Edit Report" msgstr "informe" @@ -6921,8 +6921,8 @@ msgid "Equal to (=)" msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:140 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:295 #: 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 @@ -7936,7 +7936,7 @@ msgstr "" msgid "Google Sheet Name and URL" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Grace period" msgstr "Periodo de gracia" @@ -8243,7 +8243,7 @@ msgid "" " and recreate table) or Append (insert data)." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 #, fuzzy msgid "Ignore cache when generating screenshot" msgstr "" @@ -8691,12 +8691,12 @@ msgstr "" msgid "JSON Metadata" msgstr "Metadatos JSON" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:776 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:773 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:336 msgid "JSON metadata" msgstr "Metadatos JSON" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 #, fuzzy msgid "JSON metadata is invalid!" msgstr "no es json válido" @@ -9304,7 +9304,7 @@ msgstr "Crear un nuevo Gráfico" msgid "Log Scale" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 msgid "Log retention" msgstr "Retención de registros" @@ -10566,7 +10566,7 @@ msgstr "Tamaño burbuja" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 msgid "None" msgstr "" @@ -10619,7 +10619,7 @@ msgstr "!= (No es igual)" msgid "Not in" msgstr "anotación" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:120 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 msgid "Not null" msgstr "No nulo" @@ -10637,7 +10637,7 @@ msgstr "" msgid "Nothing triggered" msgstr "Nada disparado" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 #: superset-frontend/src/pages/AlertReportList/index.tsx:302 msgid "Notification method" msgstr "Método de notificación" @@ -11206,12 +11206,12 @@ msgstr "Propietario" #: 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:477 #: 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/dashboard/components/PropertiesModal/index.tsx:524 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:528 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:254 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 #: superset-frontend/src/pages/DatasetList/index.tsx:400 @@ -11231,8 +11231,8 @@ msgstr "" "Propietarios es una lista de usuarios que pueden alterar el panel de " "control." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:494 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:542 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:491 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:539 msgid "" "Owners is a list of users who can alter the dashboard. Searchable by name" " or username." @@ -11431,7 +11431,7 @@ msgstr "Los periodos deben ser un valor entero positivo" msgid "Person or group that has certified this chart." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:718 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 msgid "Person or group that has certified this dashboard." msgstr "" @@ -11570,7 +11570,7 @@ msgstr "" msgid "Plain" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:795 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 msgid "Please DO NOT overwrite the \"filter_scopes\" key." msgstr "" @@ -12617,11 +12617,11 @@ msgstr "informe" msgid "Report failed" msgstr "Informe fallido" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 msgid "Report name" msgstr "Nombre de informe" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 msgid "Report schedule" msgstr "Programar informe" @@ -12840,6 +12840,7 @@ msgstr "" #: 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:545 #: 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 @@ -12849,7 +12850,7 @@ msgstr "" msgid "Roles" msgstr "Roles" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:562 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:559 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 " @@ -13091,7 +13092,7 @@ msgid "" "Note that you will need to close other SQL Lab windows before you do this." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 #: superset-frontend/src/features/home/SavedQueries.tsx:261 msgid "SQL Query" msgstr "Consulta SQL" @@ -13243,7 +13244,7 @@ msgstr "Sábado" #: 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/PropertiesModal/index.tsx:113 #: 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 @@ -13262,7 +13263,7 @@ msgstr "Sábado" #: 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/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 @@ -13463,7 +13464,7 @@ msgstr "Programar informes por correo electrónico para gráficos" msgid "Schedule query" msgstr "Guardar Consulta" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 msgid "Schedule settings" msgstr "Configuracion" @@ -13951,15 +13952,15 @@ msgid "" "query by clicking on the %s button." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 msgid "Send as CSV" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:406 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 msgid "Send as PNG" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 msgid "Send as text" msgstr "" @@ -15381,7 +15382,7 @@ msgid "Tagged Object could not be deleted." msgstr "El conjunto de datos no pudo ser eliminado." #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:736 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:733 #: 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 @@ -15583,7 +15584,7 @@ msgid "" "[country] column" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:465 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 msgid "The dashboard has been saved" msgstr "El dashboard ha sido guardado" @@ -16025,7 +16026,7 @@ msgstr "" msgid "The query contains one or more malformed template parameters." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:108 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 msgid "The query couldn't be loaded" msgstr "No se pudo cargar la consulta." @@ -16511,7 +16512,7 @@ msgstr "" "expone aquí como referencia y para usuarios avanzados que quieran " "modificar parámetros específicos." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:789 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:786 #: superset/views/dashboard/mixin.py:58 msgid "" "This JSON object is generated dynamically when clicking the save or " @@ -16610,7 +16611,7 @@ msgstr "" "Este Dashboard está actualmente fuerza refrescar; la siguiente fuerza " "refrescar será en %s." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:661 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 msgid "This dashboard is managed externally, and can't be edited in Superset" msgstr "" @@ -16821,7 +16822,7 @@ msgstr "" msgid "Threshold alpha level for determining significance" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 msgid "Threshold value should be double precision number" msgstr "" @@ -17030,7 +17031,7 @@ msgstr "Granularidad Temporal" msgid "Time granularity" msgstr "Granularidad de Tiempo" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 msgid "Time in seconds" msgstr "Tiempo en segundos" @@ -17222,7 +17223,7 @@ msgstr "en" #: 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/PropertiesModal/index.tsx:684 #: 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 @@ -17294,7 +17295,7 @@ msgstr "Altura" msgid "Top to Bottom" msgstr "" -#: superset/viz.py:1010 +#: superset/viz.py:1047 #, fuzzy msgid "Total" msgstr "Totales" @@ -17386,7 +17387,7 @@ msgstr "Modificado" msgid "Triangle" msgstr "Triángulo" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 msgid "Trigger Alert If..." msgstr "Disparar Alerta si..." @@ -17528,7 +17529,7 @@ msgstr "Parámetros de URL" msgid "URL parameters" msgstr "Parámetros de URL" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:696 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 msgid "URL slug" msgstr "nombre para URL" @@ -17820,7 +17821,7 @@ msgstr "Editar Base de Datos" msgid "Usage" msgstr "Administrar" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:802 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 #, python-format msgid "Use \"%(menuName)s\" menu instead." msgstr "" @@ -17999,7 +18000,7 @@ msgstr "" #: 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/features/alerts/AlertReportModal.tsx:393 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 msgid "Value" msgstr "Valor" @@ -18857,7 +18858,7 @@ msgstr "Añadir anotación" msgid "Working" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 msgid "Working timeout" msgstr "Tiempo de espera" @@ -19377,7 +19378,7 @@ msgstr "" msgid "Your query could not be saved" msgstr "Tu consulta no pudo ser guardada" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:179 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 msgid "Your query could not be scheduled" msgstr "No se pudo programar la consulta." @@ -19385,7 +19386,7 @@ msgstr "No se pudo programar la consulta." msgid "Your query could not be updated" msgstr "Tu consulta no pudo ser actualizada" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:172 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 msgid "" "Your query has been scheduled. To see details of your query, navigate to " "Saved queries" @@ -20488,7 +20489,7 @@ msgstr "Consultas Guardadas" msgid "search by tags" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 #, fuzzy msgid "seconds" msgstr "30 segundos" diff --git a/superset/translations/fr/LC_MESSAGES/messages.po b/superset/translations/fr/LC_MESSAGES/messages.po index 30f134c6263e2..2963244cc4710 100644 --- a/superset/translations/fr/LC_MESSAGES/messages.po +++ b/superset/translations/fr/LC_MESSAGES/messages.po @@ -142,7 +142,7 @@ msgstr "" msgid " to visualize your data." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:116 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 msgid "!= (Is not equal)" msgstr "!= (N'est pas égal)" @@ -664,7 +664,7 @@ msgstr "" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 msgid "30 days" msgstr "30 jours" @@ -744,7 +744,7 @@ msgstr "Semaine débutant le lundi" msgid "6 hour" msgstr "6 heures" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:135 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 msgid "60 days" msgstr "60 jours" @@ -771,7 +771,7 @@ msgstr "" msgid "9/91 percentiles" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:139 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 msgid "90 days" msgstr "90 jours" @@ -779,11 +779,11 @@ msgstr "90 jours" msgid ":" msgstr ":" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:96 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 msgid "< (Smaller than)" msgstr "< (Plus petit que)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:104 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 msgid "<= (Smaller or equal)" msgstr "<= (Plus petit ou égal)" @@ -812,15 +812,15 @@ msgstr "Spatial" msgid "" msgstr "Type de tri" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:112 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 msgid "== (Is equal)" msgstr "== (Est equal)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:100 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 msgid "> (Larger than)" msgstr "> (Plus grand que)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:108 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 msgid ">= (Larger or equal)" msgstr ">= (Plus grand ou égal)" @@ -881,7 +881,7 @@ msgid "" "empty will allow embedding from any domain." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:755 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:752 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:445 #, fuzzy msgid "A list of tags that have been applied to this chart." @@ -915,7 +915,7 @@ msgid "" " rather than its radius or sweep angle." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:700 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 msgid "A readable URL for your dashboard" msgstr "Pour avoir une URL lisible pour votre tableau de bord" @@ -976,7 +976,7 @@ msgstr "Dépassement de délai lors de la génération d'un dataframe." msgid "A timeout occurred while taking a screenshot." msgstr "Dépassement de délai lors d'une capture d'écran." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:299 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 msgid "A valid color scheme is required" msgstr "Un jeu de couleur valide doit être fourni" @@ -1011,8 +1011,8 @@ msgstr "dernière partition :" msgid "About" msgstr "A propos" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:479 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:522 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:476 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:519 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:411 msgid "Access" msgstr "Accès" @@ -1057,7 +1057,7 @@ msgstr "Journaux d'actions" msgid "Actions" msgstr "Actions" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:386 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 #: superset-frontend/src/pages/AlertReportList/index.tsx:355 msgid "Active" msgstr "Actif" @@ -1101,7 +1101,7 @@ msgstr "Formatage adapté" msgid "Add" msgstr "Ajouter" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 #, fuzzy msgid "Add Alert" msgstr "alerte" @@ -1138,7 +1138,7 @@ msgstr "Ajouter un log" msgid "Add Metric" msgstr "Ajouter une métrique" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 #, fuzzy msgid "Add Report" msgstr "rapport" @@ -1265,7 +1265,7 @@ msgstr "Ajouter un nouveau formateur de couleur" msgid "Add new formatter" msgstr "Ajouter un formateur" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:374 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add notification method" msgstr "Ajouter une méthode de notification" @@ -1375,7 +1375,7 @@ msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:768 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" @@ -1513,11 +1513,11 @@ msgstr "alerte" msgid "Alert Triggered, In Grace Period" msgstr "Alerte déclenchée, -période de grâce" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 msgid "Alert condition" msgstr "Condition d'alerte" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Alert condition schedule" msgstr "Planification de la condition d'alerte" @@ -1537,7 +1537,7 @@ msgstr "Alerte déclenchée pendant la période de grâce." msgid "Alert found an error while executing a query." msgstr "Une erreur a été rencontrée lors de l'exécution de la requête." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 msgid "Alert name" msgstr "Nom de l'alerte" @@ -1803,7 +1803,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:128 #: 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 @@ -2368,7 +2368,7 @@ msgstr "Les annotations n'ont pas pu être supprimées." msgid "Any" msgstr "Tous" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:729 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:726 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:393 msgid "Any additional detail to show in the certification tooltip." msgstr "" @@ -2420,7 +2420,7 @@ msgstr "" "que la requête source satisfasse les périodes minimum définies dans la " "fenêtre glissante." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:113 #: 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 @@ -2776,7 +2776,7 @@ msgstr "" msgid "Basic" msgstr "Simple" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:682 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:679 #: 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 @@ -3191,7 +3191,7 @@ msgstr "Il ne faut pas avoir d'élement en commun entre Série et Breakdowns" #: 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/PropertiesModal/index.tsx:646 #: 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 @@ -3346,7 +3346,7 @@ msgstr "Récents" msgid "Centroid (Longitude and Latitude): " msgstr "Invalide Longitude/Latitude" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:709 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 #, fuzzy msgid "Certification" @@ -3356,7 +3356,7 @@ msgstr "Détails de certification" #: 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/dashboard/components/PropertiesModal/index.tsx:720 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 msgid "Certification details" @@ -3376,7 +3376,7 @@ msgstr "Certifié Par" #: 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/dashboard/components/PropertiesModal/index.tsx:711 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 msgid "Certified by" @@ -3478,7 +3478,7 @@ 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/alerts/AlertReportModal.tsx:406 #: 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 @@ -4149,7 +4149,7 @@ msgid "" "cell against the other cells in the selected range: " msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:500 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 msgid "Colors" msgstr "Couleur" @@ -4474,7 +4474,7 @@ msgstr "" msgid "Compute the contribution to the total" msgstr "Calculer la contribution au total" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 msgid "Condition" msgstr "Condition" @@ -5100,7 +5100,7 @@ msgstr "" msgid "Dark mode" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/home/DashboardTable.tsx:194 #: superset-frontend/src/features/home/RightMenu.tsx:228 #: superset-frontend/src/pages/DashboardList/index.tsx:672 @@ -5142,11 +5142,11 @@ msgstr "Propriétés du tableau de bord" msgid "Dashboard parameters are invalid." msgstr "Les paramètres du tableau de bord sont invalides." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:639 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 msgid "Dashboard properties" msgstr "Propriétés du tableau de bord" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:447 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 #, fuzzy msgid "Dashboard properties updated" msgstr "Propriétés du tableau de bord" @@ -6614,7 +6614,7 @@ msgstr "L'épaisseur de la ligne" msgid "Edit" msgstr "Éditer" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 #, fuzzy msgid "Edit Alert" msgstr "Éditer la table" @@ -6668,7 +6668,7 @@ msgstr "Éditer la métrique" msgid "Edit Plugin" msgstr "Éditer le plugin" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:378 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 #, fuzzy msgid "Edit Report" msgstr "Modifier le rapport par e-mail" @@ -7046,8 +7046,8 @@ msgid "Equal to (=)" msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:140 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:295 #: 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 @@ -8083,7 +8083,7 @@ msgstr "" msgid "Google Sheet Name and URL" msgstr "Nom et URL de la feuille Google Sheet" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Grace period" msgstr "Période de grâce" @@ -8398,7 +8398,7 @@ msgstr "" "d'actions), Remplacer (supprimer et recréer la table) ou Ajouter (insérer" " les données)." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 #, fuzzy msgid "Ignore cache when generating screenshot" msgstr "" @@ -8855,12 +8855,12 @@ msgstr "JSON" msgid "JSON Metadata" msgstr "JSON des méta-données" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:776 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:773 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:336 msgid "JSON metadata" msgstr "méta-données JSON " -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 #, fuzzy msgid "JSON metadata is invalid!" msgstr "le json n'est pas valide" @@ -9478,7 +9478,7 @@ msgstr "Créer un nouveau graphique" msgid "Log Scale" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 msgid "Log retention" msgstr "Rétention de log" @@ -10751,7 +10751,7 @@ msgstr "Taille de la bulle" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 msgid "None" msgstr "Aucun" @@ -10804,7 +10804,7 @@ msgstr "!= (N'est pas égal)" msgid "Not in" msgstr "annotation" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:120 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 msgid "Not null" msgstr "Non Null" @@ -10822,7 +10822,7 @@ msgstr "" msgid "Nothing triggered" msgstr "Rien déclenché" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 #: superset-frontend/src/pages/AlertReportList/index.tsx:302 msgid "Notification method" msgstr "Méthode de notification" @@ -11403,12 +11403,12 @@ msgstr "Propriétaire" #: 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:477 #: 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/dashboard/components/PropertiesModal/index.tsx:524 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:528 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:254 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 #: superset-frontend/src/pages/DatasetList/index.tsx:400 @@ -11428,8 +11428,8 @@ msgstr "" "Owners est une liste d'utilisateurs qui peuvent modifier le tableau de " "bord." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:494 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:542 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:491 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:539 msgid "" "Owners is a list of users who can alter the dashboard. Searchable by name" " or username." @@ -11631,7 +11631,7 @@ msgstr "Les périodes doivent être des nombres entiers positifs" msgid "Person or group that has certified this chart." msgstr "Groupe ou personne ayant certifié cette métrique" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:718 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 #, fuzzy msgid "Person or group that has certified this dashboard." msgstr "Groupe ou personne ayant certifié cette métrique" @@ -11779,7 +11779,7 @@ msgstr "" msgid "Plain" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:795 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 msgid "Please DO NOT overwrite the \"filter_scopes\" key." msgstr "" @@ -12842,11 +12842,11 @@ msgstr "Rapporter un BUG" msgid "Report failed" msgstr "Le rapport a échoué" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 msgid "Report name" msgstr "Nom du rapport" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 msgid "Report schedule" msgstr "Planification de rapport" @@ -13065,6 +13065,7 @@ msgstr "" #: 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:545 #: 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 @@ -13074,7 +13075,7 @@ msgstr "" msgid "Roles" msgstr "Profils" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:562 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:559 #, fuzzy msgid "" "Roles is a list which defines access to the dashboard. Granting a role " @@ -13329,7 +13330,7 @@ msgid "" "Note that you will need to close other SQL Lab windows before you do this." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 #: superset-frontend/src/features/home/SavedQueries.tsx:261 msgid "SQL Query" msgstr "Requête SQL" @@ -13480,7 +13481,7 @@ msgstr "Samedi" #: 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/PropertiesModal/index.tsx:113 #: 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 @@ -13499,7 +13500,7 @@ msgstr "Samedi" #: 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/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 @@ -13693,7 +13694,7 @@ msgstr "Planifier un rapport par e-mail" msgid "Schedule query" msgstr "Plannifier une requête" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 msgid "Schedule settings" msgstr "Paramètres de planification" @@ -14163,15 +14164,15 @@ msgid "" "query by clicking on the %s button." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 msgid "Send as CSV" msgstr "Envoyer comme CSV" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:406 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 msgid "Send as PNG" msgstr "Envoyer comme PNG" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 msgid "Send as text" msgstr "Envoyer comme texte" @@ -15590,7 +15591,7 @@ msgid "Tagged Object could not be deleted." msgstr "Le jeu de données n'a pas pu être supprimé." #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:736 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:733 #: 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 @@ -15794,7 +15795,7 @@ msgid "" "[country] column" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:465 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 msgid "The dashboard has been saved" msgstr "Ce Tableau de Bord a été sauvegardé" @@ -16291,7 +16292,7 @@ msgstr "" 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)." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:108 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 msgid "The query couldn't be loaded" msgstr "La requête ne peut pas être chargée" @@ -16828,7 +16829,7 @@ msgstr "" "exposé ici comme une référence et pour les experts qui voudraient " "modifier des paramètres." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:789 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:786 #: superset/views/dashboard/mixin.py:58 msgid "" "This JSON object is generated dynamically when clicking the save or " @@ -16929,7 +16930,7 @@ msgstr "" "Ce tableau de bord est en train de se rafraîchir automatiquement ; le " "prochain rafraîchissement sera dans %s." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:661 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 msgid "This dashboard is managed externally, and can't be edited in Superset" msgstr "" @@ -17153,7 +17154,7 @@ msgstr "" msgid "Threshold alpha level for determining significance" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 msgid "Threshold value should be double precision number" msgstr "" @@ -17364,7 +17365,7 @@ msgstr "Granularité de temps manquante" msgid "Time granularity" msgstr "Granularité de Temps" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 msgid "Time in seconds" msgstr "Temps en secondes" @@ -17542,7 +17543,7 @@ msgstr "dans" #: 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/PropertiesModal/index.tsx:684 #: 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 @@ -17612,7 +17613,7 @@ msgstr "Hauteur" msgid "Top to Bottom" msgstr "" -#: superset/viz.py:1010 +#: superset/viz.py:1047 #, fuzzy msgid "Total" msgstr "Totaux" @@ -17703,7 +17704,7 @@ msgstr "Tendance" msgid "Triangle" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 msgid "Trigger Alert If..." msgstr "Déclencher une alerte si ..." @@ -17837,7 +17838,7 @@ msgstr "Paramètres URL" msgid "URL parameters" msgstr "Paramètres URL" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:696 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 msgid "URL slug" msgstr "URL Slug" @@ -18144,7 +18145,7 @@ msgstr "Importer des fichiers Excel vers la base de données" msgid "Usage" msgstr "Gestion" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:802 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 #, python-format msgid "Use \"%(menuName)s\" menu instead." msgstr "" @@ -18324,7 +18325,7 @@ msgstr "" #: 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/features/alerts/AlertReportModal.tsx:393 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 msgid "Value" msgstr "Valeur" @@ -19205,7 +19206,7 @@ msgstr "Ajouter une annotation" msgid "Working" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 msgid "Working timeout" msgstr "Timeout d'exécution" @@ -19739,7 +19740,7 @@ msgstr "" msgid "Your query could not be saved" msgstr "Votre requête n'a pas pu être enregistrée" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:179 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 msgid "Your query could not be scheduled" msgstr "Votre requête ne peut pas être planifiée" @@ -19747,7 +19748,7 @@ msgstr "Votre requête ne peut pas être planifiée" msgid "Your query could not be updated" msgstr "Votre requête n'a pas pu être mise à jour" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:172 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 msgid "" "Your query has been scheduled. To see details of your query, navigate to " "Saved queries" @@ -20861,7 +20862,7 @@ msgstr "requêtes sauvegardées" msgid "search by tags" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 #, fuzzy msgid "seconds" msgstr "30 secondes" diff --git a/superset/translations/it/LC_MESSAGES/messages.po b/superset/translations/it/LC_MESSAGES/messages.po index 48c4f2d508aea..3507d53826459 100644 --- a/superset/translations/it/LC_MESSAGES/messages.po +++ b/superset/translations/it/LC_MESSAGES/messages.po @@ -119,7 +119,7 @@ msgstr "" msgid " to visualize your data." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:116 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 msgid "!= (Is not equal)" msgstr "" @@ -614,7 +614,7 @@ msgstr "" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 msgid "30 days" msgstr "" @@ -694,7 +694,7 @@ msgstr "" msgid "6 hour" msgstr "ora" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:135 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 msgid "60 days" msgstr "" @@ -721,7 +721,7 @@ msgstr "" msgid "9/91 percentiles" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:139 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 msgid "90 days" msgstr "" @@ -729,11 +729,11 @@ msgstr "" msgid ":" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:96 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 msgid "< (Smaller than)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:104 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 msgid "<= (Smaller or equal)" msgstr "" @@ -761,15 +761,15 @@ msgstr "" msgid "" msgstr "Grafici" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:112 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 msgid "== (Is equal)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:100 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 msgid "> (Larger than)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:108 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 msgid ">= (Larger or equal)" msgstr "" @@ -820,7 +820,7 @@ msgid "" "empty will allow embedding from any domain." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:755 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:752 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:445 msgid "A list of tags that have been applied to this chart." msgstr "" @@ -851,7 +851,7 @@ msgid "" " rather than its radius or sweep angle." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:700 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 msgid "A readable URL for your dashboard" msgstr "ottenere una URL leggibile per la tua dashboard" @@ -910,7 +910,7 @@ msgstr "Errore nel creare il datasource" msgid "A timeout occurred while taking a screenshot." msgstr "Errore nel recupero dei metadati della tabella" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:299 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 msgid "A valid color scheme is required" msgstr "" @@ -945,8 +945,8 @@ msgstr "Testa la Connessione" msgid "About" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:479 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:522 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:476 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:519 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:411 msgid "Access" msgstr "Nessun Accesso!" @@ -991,7 +991,7 @@ msgstr "" msgid "Actions" msgstr "Azione" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:386 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 #: superset-frontend/src/pages/AlertReportList/index.tsx:355 msgid "Active" msgstr "Azione" @@ -1035,7 +1035,7 @@ msgstr "Formato Datetime" msgid "Add" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 #, fuzzy msgid "Add Alert" msgstr "Aggiungi grafico" @@ -1072,7 +1072,7 @@ msgstr "" msgid "Add Metric" msgstr "Aggiungi metrica" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 #, fuzzy msgid "Add Report" msgstr "Importa" @@ -1200,7 +1200,7 @@ msgstr "" msgid "Add new formatter" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:374 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add notification method" msgstr "" @@ -1309,7 +1309,7 @@ msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:768 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" @@ -1446,11 +1446,11 @@ msgstr "Cancella" msgid "Alert Triggered, In Grace Period" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 msgid "Alert condition" msgstr "Testa la Connessione" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Alert condition schedule" msgstr "Testa la Connessione" @@ -1470,7 +1470,7 @@ msgstr "" msgid "Alert found an error while executing a query." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 msgid "Alert name" msgstr "Nome Completo" @@ -1728,7 +1728,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:128 #: 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 @@ -2245,7 +2245,7 @@ msgstr "" msgid "Any" msgstr "giorno" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:729 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:726 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:393 msgid "Any additional detail to show in the certification tooltip." msgstr "" @@ -2292,7 +2292,7 @@ msgid "" "source query satisfies the minimum periods defined in the rolling window." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:113 #: 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 @@ -2641,7 +2641,7 @@ msgstr "" msgid "Basic" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:682 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:679 #: 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 @@ -3035,7 +3035,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:646 #: 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 @@ -3179,7 +3179,7 @@ msgstr "" msgid "Centroid (Longitude and Latitude): " msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:709 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 msgid "Certification" msgstr "" @@ -3188,7 +3188,7 @@ msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:720 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 msgid "Certification details" @@ -3209,7 +3209,7 @@ msgstr "Modificato" #: 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/dashboard/components/PropertiesModal/index.tsx:711 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 msgid "Certified by" @@ -3303,7 +3303,7 @@ 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/alerts/AlertReportModal.tsx:406 #: 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 @@ -3947,7 +3947,7 @@ msgid "" "cell against the other cells in the selected range: " msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:500 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 msgid "Colors" msgstr "" @@ -4257,7 +4257,7 @@ msgstr "" msgid "Compute the contribution to the total" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 #, fuzzy msgid "Condition" msgstr "Testa la Connessione" @@ -4873,7 +4873,7 @@ msgstr "" msgid "Dark mode" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/home/DashboardTable.tsx:194 #: superset-frontend/src/features/home/RightMenu.tsx:228 #: superset-frontend/src/pages/DashboardList/index.tsx:672 @@ -4915,11 +4915,11 @@ msgstr "Elenco Dashboard" msgid "Dashboard parameters are invalid." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:639 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 msgid "Dashboard properties" msgstr "Elenco Dashboard" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:447 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 #, fuzzy msgid "Dashboard properties updated" msgstr "Elenco Dashboard" @@ -6338,7 +6338,7 @@ msgstr "Larghezza" msgid "Edit" msgstr "Modifica" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 #, fuzzy msgid "Edit Alert" msgstr "Modifica Tabella" @@ -6392,7 +6392,7 @@ msgstr "Modifica metrica" msgid "Edit Plugin" msgstr "Edita colonna" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:378 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 #, fuzzy msgid "Edit Report" msgstr "Importa" @@ -6757,8 +6757,8 @@ msgid "Equal to (=)" msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:140 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:295 #: 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 @@ -7750,7 +7750,7 @@ msgstr "" msgid "Google Sheet Name and URL" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Grace period" msgstr "" @@ -8037,7 +8037,7 @@ msgid "" " and recreate table) or Append (insert data)." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 msgid "Ignore cache when generating screenshot" msgstr "" @@ -8469,12 +8469,12 @@ msgstr "JSON" msgid "JSON Metadata" msgstr "Metadati JSON" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:776 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:773 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:336 msgid "JSON metadata" msgstr "Metadati JSON" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 #, fuzzy msgid "JSON metadata is invalid!" msgstr "json non è valido" @@ -9060,7 +9060,7 @@ msgstr "Creato il" msgid "Log Scale" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 msgid "Log retention" msgstr "" @@ -10303,7 +10303,7 @@ msgstr "Grandezza della bolla" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 msgid "None" msgstr "" @@ -10354,7 +10354,7 @@ msgstr "" msgid "Not in" msgstr "Azione" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:120 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 msgid "Not null" msgstr "" @@ -10371,7 +10371,7 @@ msgstr "" msgid "Nothing triggered" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 #: superset-frontend/src/pages/AlertReportList/index.tsx:302 msgid "Notification method" msgstr "" @@ -10913,12 +10913,12 @@ msgstr "Proprietario" #: 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:477 #: 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/dashboard/components/PropertiesModal/index.tsx:524 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:528 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:254 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 #: superset-frontend/src/pages/DatasetList/index.tsx:400 @@ -10936,8 +10936,8 @@ msgstr "" msgid "Owners is a list of users who can alter the dashboard." msgstr "Proprietari è una lista di utenti che può alterare la dashboard." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:494 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:542 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:491 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:539 msgid "" "Owners is a list of users who can alter the dashboard. Searchable by name" " or username." @@ -11132,7 +11132,7 @@ msgstr "" msgid "Person or group that has certified this chart." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:718 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 msgid "Person or group that has certified this dashboard." msgstr "" @@ -11272,7 +11272,7 @@ msgstr "" msgid "Plain" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:795 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 msgid "Please DO NOT overwrite the \"filter_scopes\" key." msgstr "" @@ -12290,11 +12290,11 @@ msgstr "Importa" msgid "Report failed" msgstr "Nome Completo" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 msgid "Report name" msgstr "Nome Completo" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 msgid "Report schedule" msgstr "Importa" @@ -12506,6 +12506,7 @@ msgstr "" #: 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:545 #: 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 @@ -12515,7 +12516,7 @@ msgstr "" msgid "Roles" msgstr "Ruoli" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:562 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:559 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 " @@ -12754,7 +12755,7 @@ msgid "" "Note that you will need to close other SQL Lab windows before you do this." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 #: superset-frontend/src/features/home/SavedQueries.tsx:261 msgid "SQL Query" msgstr "" @@ -12904,7 +12905,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:113 #: 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 @@ -12923,7 +12924,7 @@ msgstr "" #: 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/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 @@ -13117,7 +13118,7 @@ msgstr "" msgid "Schedule query" msgstr "Mostra query salvate" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 msgid "Schedule settings" msgstr "Mostra query salvate" @@ -13583,15 +13584,15 @@ msgid "" "query by clicking on the %s button." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 msgid "Send as CSV" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:406 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 msgid "Send as PNG" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 msgid "Send as text" msgstr "" @@ -14975,7 +14976,7 @@ msgid "Tagged Object could not be deleted." msgstr "La query non può essere caricata" #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:736 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:733 #: 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 @@ -15171,7 +15172,7 @@ msgid "" "[country] column" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:465 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 msgid "The dashboard has been saved" msgstr "" @@ -15586,7 +15587,7 @@ msgstr "" msgid "The query contains one or more malformed template parameters." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:108 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 msgid "The query couldn't be loaded" msgstr "La query non può essere caricata" @@ -16047,7 +16048,7 @@ msgstr "" "JSON è esposto qui per referenza e per utenti esperti che vogliono " "modificare parametri specifici." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:789 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:786 #: superset/views/dashboard/mixin.py:58 msgid "" "This JSON object is generated dynamically when clicking the save or " @@ -16144,7 +16145,7 @@ msgid "" "be in %s." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:661 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 msgid "This dashboard is managed externally, and can't be edited in Superset" msgstr "" @@ -16346,7 +16347,7 @@ msgstr "" msgid "Threshold alpha level for determining significance" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 msgid "Threshold value should be double precision number" msgstr "" @@ -16550,7 +16551,7 @@ msgstr "" msgid "Time granularity" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 msgid "Time in seconds" msgstr "" @@ -16725,7 +16726,7 @@ msgstr "Min" #: 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/PropertiesModal/index.tsx:684 #: 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 @@ -16796,7 +16797,7 @@ msgstr "Altezza" msgid "Top to Bottom" msgstr "" -#: superset/viz.py:1010 +#: superset/viz.py:1047 msgid "Total" msgstr "" @@ -16886,7 +16887,7 @@ msgstr "" msgid "Triangle" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 msgid "Trigger Alert If..." msgstr "" @@ -17019,7 +17020,7 @@ msgstr "Parametri" msgid "URL parameters" msgstr "Parametri" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:696 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 msgid "URL slug" msgstr "Slug" @@ -17301,7 +17302,7 @@ msgstr "Mostra database" msgid "Usage" msgstr "Gestisci" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:802 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 #, python-format msgid "Use \"%(menuName)s\" menu instead." msgstr "" @@ -17477,7 +17478,7 @@ msgstr "" #: 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/features/alerts/AlertReportModal.tsx:393 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 msgid "Value" msgstr "" @@ -18313,7 +18314,7 @@ msgstr "Azione" msgid "Working" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 msgid "Working timeout" msgstr "" @@ -18816,7 +18817,7 @@ msgstr "" msgid "Your query could not be saved" msgstr "La tua query non può essere salvata" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:179 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 msgid "Your query could not be scheduled" msgstr "La tua query non può essere salvata" @@ -18824,7 +18825,7 @@ msgstr "La tua query non può essere salvata" msgid "Your query could not be updated" msgstr "La tua query non può essere salvata" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:172 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 msgid "" "Your query has been scheduled. To see details of your query, navigate to " "Saved queries" @@ -19901,7 +19902,7 @@ msgstr "Query salvate" msgid "search by tags" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 msgid "seconds" msgstr "" diff --git a/superset/translations/ja/LC_MESSAGES/messages.po b/superset/translations/ja/LC_MESSAGES/messages.po index 4410b43c8d13a..deae8766f8bce 100644 --- a/superset/translations/ja/LC_MESSAGES/messages.po +++ b/superset/translations/ja/LC_MESSAGES/messages.po @@ -119,7 +119,7 @@ msgstr "" msgid " to visualize your data." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:116 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 msgid "!= (Is not equal)" msgstr "" @@ -614,7 +614,7 @@ msgstr "" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 msgid "30 days" msgstr "30日" @@ -697,7 +697,7 @@ msgstr "" msgid "6 hour" msgstr "6時間" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:135 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 msgid "60 days" msgstr "60日" @@ -724,7 +724,7 @@ msgstr "" msgid "9/91 percentiles" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:139 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 msgid "90 days" msgstr "90日" @@ -732,11 +732,11 @@ msgstr "90日" msgid ":" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:96 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 msgid "< (Smaller than)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:104 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 msgid "<= (Smaller or equal)" msgstr "" @@ -764,15 +764,15 @@ msgstr "" msgid "" msgstr "チャートタイプ" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:112 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 msgid "== (Is equal)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:100 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 msgid "> (Larger than)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:108 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 msgid ">= (Larger or equal)" msgstr "" @@ -823,7 +823,7 @@ msgid "" "empty will allow embedding from any domain." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:755 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:752 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:445 msgid "A list of tags that have been applied to this chart." msgstr "" @@ -854,7 +854,7 @@ msgid "" " rather than its radius or sweep angle." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:700 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 msgid "A readable URL for your dashboard" msgstr "ダッシュボード用の読みやすいURL" @@ -911,7 +911,7 @@ msgstr "csv の生成中にタイムアウトが発生しました。" msgid "A timeout occurred while taking a screenshot." msgstr "スクリーンショットの撮影中にタイムアウトが発生しました。" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:299 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 msgid "A valid color scheme is required" msgstr "有効な配色が必要です" @@ -946,8 +946,8 @@ msgstr "アラート状態" msgid "About" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:479 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:522 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:476 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:519 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:411 msgid "Access" msgstr "アクセス" @@ -992,7 +992,7 @@ msgstr "操作履歴" msgid "Actions" msgstr "アクション" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:386 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 #: superset-frontend/src/pages/AlertReportList/index.tsx:355 msgid "Active" msgstr "アクティブ" @@ -1036,7 +1036,7 @@ msgstr "日時フォーマット" msgid "Add" msgstr "追加" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 #, fuzzy msgid "Add Alert" msgstr "アラート" @@ -1073,7 +1073,7 @@ msgstr "ログを追加" msgid "Add Metric" msgstr "指標を追加" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 #, fuzzy msgid "Add Report" msgstr "レポート" @@ -1202,7 +1202,7 @@ msgstr "" msgid "Add new formatter" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:374 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add notification method" msgstr "" @@ -1313,7 +1313,7 @@ msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:768 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" @@ -1444,11 +1444,11 @@ msgstr "アラート" msgid "Alert Triggered, In Grace Period" msgstr "アラート発動、猶予期間中" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 msgid "Alert condition" msgstr "アラート状態" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Alert condition schedule" msgstr "アラート状態スケジュール" @@ -1468,7 +1468,7 @@ msgstr "猶予期間中にアラートが発生しました。" msgid "Alert found an error while executing a query." msgstr "クエリの実行中にアラートがエラーを検出しました。" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 msgid "Alert name" msgstr "アラート名" @@ -1726,7 +1726,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:128 #: 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 @@ -2241,7 +2241,7 @@ msgstr "" msgid "Any" msgstr "任意" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:729 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:726 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:393 msgid "Any additional detail to show in the certification tooltip." msgstr "" @@ -2288,7 +2288,7 @@ msgid "" "source query satisfies the minimum periods defined in the rolling window." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:113 #: 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 @@ -2636,7 +2636,7 @@ msgstr "" msgid "Basic" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:682 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:679 #: 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 @@ -3030,7 +3030,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:646 #: 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 @@ -3175,7 +3175,7 @@ msgstr "最近" msgid "Centroid (Longitude and Latitude): " msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:709 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 #, fuzzy msgid "Certification" @@ -3185,7 +3185,7 @@ msgstr "無効な証明書" #: 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/dashboard/components/PropertiesModal/index.tsx:720 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 msgid "Certification details" @@ -3206,7 +3206,7 @@ msgstr "更新者" #: 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/dashboard/components/PropertiesModal/index.tsx:711 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 msgid "Certified by" @@ -3301,7 +3301,7 @@ 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/alerts/AlertReportModal.tsx:406 #: 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 @@ -3951,7 +3951,7 @@ msgid "" "cell against the other cells in the selected range: " msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:500 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 msgid "Colors" msgstr "色" @@ -4256,7 +4256,7 @@ msgstr "" msgid "Compute the contribution to the total" msgstr "全体への寄与度を算出" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 #, fuzzy msgid "Condition" msgstr "アラート状態" @@ -4877,7 +4877,7 @@ msgstr "" msgid "Dark mode" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/home/DashboardTable.tsx:194 #: superset-frontend/src/features/home/RightMenu.tsx:228 #: superset-frontend/src/pages/DashboardList/index.tsx:672 @@ -4919,11 +4919,11 @@ msgstr "ダッシュボードのプロパティ" msgid "Dashboard parameters are invalid." msgstr "ダッシュボードパラメータが無効です。" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:639 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 msgid "Dashboard properties" msgstr "ダッシュボードのプロパティ" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:447 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 #, fuzzy msgid "Dashboard properties updated" msgstr "ダッシュボードのプロパティ" @@ -6339,7 +6339,7 @@ msgstr "線の幅" msgid "Edit" msgstr "編集" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 #, fuzzy msgid "Edit Alert" msgstr "テーブルを編集" @@ -6393,7 +6393,7 @@ msgstr "指標を編集" msgid "Edit Plugin" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:378 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 #, fuzzy msgid "Edit Report" msgstr "レポート" @@ -6762,8 +6762,8 @@ msgid "Equal to (=)" msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:140 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:295 #: 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 @@ -7755,7 +7755,7 @@ msgstr "" msgid "Google Sheet Name and URL" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Grace period" msgstr "猶予期間" @@ -8041,7 +8041,7 @@ msgid "" " and recreate table) or Append (insert data)." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 #, fuzzy msgid "Ignore cache when generating screenshot" msgstr "スクリーンショットの生成時にレポートスケジュールの実行に失敗しました。" @@ -8472,12 +8472,12 @@ msgstr "" msgid "JSON Metadata" msgstr "JSONメタデータ" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:776 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:773 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:336 msgid "JSON metadata" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 msgid "JSON metadata is invalid!" msgstr "" @@ -9064,7 +9064,7 @@ msgstr "新しいチャートを作成" msgid "Log Scale" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 msgid "Log retention" msgstr "ログの保持" @@ -10300,7 +10300,7 @@ msgstr "" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 msgid "None" msgstr "なし" @@ -10351,7 +10351,7 @@ msgstr "" msgid "Not in" msgstr "注釈" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:120 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 msgid "Not null" msgstr "" @@ -10368,7 +10368,7 @@ msgstr "" msgid "Nothing triggered" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 #: superset-frontend/src/pages/AlertReportList/index.tsx:302 msgid "Notification method" msgstr "" @@ -10918,12 +10918,12 @@ msgstr "所有者" #: 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:477 #: 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/dashboard/components/PropertiesModal/index.tsx:524 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:528 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:254 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 #: superset-frontend/src/pages/DatasetList/index.tsx:400 @@ -10941,8 +10941,8 @@ msgstr "" msgid "Owners is a list of users who can alter the dashboard." msgstr "所有者は、ダッシュボードを変更できるユーザーのリストです。" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:494 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:542 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:491 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:539 msgid "" "Owners is a list of users who can alter the dashboard. Searchable by name" " or username." @@ -11138,7 +11138,7 @@ msgstr "" msgid "Person or group that has certified this chart." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:718 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 #, fuzzy msgid "Person or group that has certified this dashboard." msgstr "このダッシュボードにアクセスできません。" @@ -11278,7 +11278,7 @@ msgstr "" msgid "Plain" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:795 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 msgid "Please DO NOT overwrite the \"filter_scopes\" key." msgstr "" @@ -12295,11 +12295,11 @@ msgstr "レポート" msgid "Report failed" msgstr "レポートに失敗しました" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 msgid "Report name" msgstr "レポート名" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 msgid "Report schedule" msgstr "レポートスケジュール" @@ -12510,6 +12510,7 @@ msgstr "" #: 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:545 #: 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 @@ -12519,7 +12520,7 @@ msgstr "" msgid "Roles" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:562 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:559 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 " @@ -12759,7 +12760,7 @@ msgid "" "Note that you will need to close other SQL Lab windows before you do this." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 #: superset-frontend/src/features/home/SavedQueries.tsx:261 msgid "SQL Query" msgstr "SQLクエリ" @@ -12910,7 +12911,7 @@ msgstr "土曜日" #: 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/PropertiesModal/index.tsx:113 #: 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 @@ -12929,7 +12930,7 @@ msgstr "土曜日" #: 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/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 @@ -13124,7 +13125,7 @@ msgstr "チャートのメールレポートのスケジュール" msgid "Schedule query" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 msgid "Schedule settings" msgstr "スケジュール設定" @@ -13591,15 +13592,15 @@ msgid "" "query by clicking on the %s button." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 msgid "Send as CSV" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:406 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 msgid "Send as PNG" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 msgid "Send as text" msgstr "" @@ -14986,7 +14987,7 @@ msgid "Tagged Object could not be deleted." msgstr "データベースを削除できませんでした。" #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:736 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:733 #: 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 @@ -15183,7 +15184,7 @@ msgid "" "[country] column" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:465 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 msgid "The dashboard has been saved" msgstr "ダッシュボードが保存されました" @@ -15595,7 +15596,7 @@ msgstr "" msgid "The query contains one or more malformed template parameters." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:108 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 msgid "The query couldn't be loaded" msgstr "" @@ -16066,7 +16067,7 @@ msgid "" "parameters." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:789 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:786 #: superset/views/dashboard/mixin.py:58 msgid "" "This JSON object is generated dynamically when clicking the save or " @@ -16161,7 +16162,7 @@ msgid "" "be in %s." msgstr "このダッシュボードは現在強制的に更新されています。次の強制更新は %s。" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:661 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 msgid "This dashboard is managed externally, and can't be edited in Superset" msgstr "" @@ -16360,7 +16361,7 @@ msgstr "" msgid "Threshold alpha level for determining significance" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 msgid "Threshold value should be double precision number" msgstr "" @@ -16567,7 +16568,7 @@ msgstr "" msgid "Time granularity" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 msgid "Time in seconds" msgstr "秒単位の時間" @@ -16743,7 +16744,7 @@ msgstr "アクション" #: 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/PropertiesModal/index.tsx:684 #: 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 @@ -16814,7 +16815,7 @@ msgstr "高さ" msgid "Top to Bottom" msgstr "" -#: superset/viz.py:1010 +#: superset/viz.py:1047 msgid "Total" msgstr "" @@ -16905,7 +16906,7 @@ msgstr "変更" msgid "Triangle" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 msgid "Trigger Alert If..." msgstr "" @@ -17038,7 +17039,7 @@ msgstr "URLパラメータ" msgid "URL parameters" msgstr "URLパラメータ" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:696 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 msgid "URL slug" msgstr "URLスラッグ" @@ -17326,7 +17327,7 @@ msgstr "データベースを編集" msgid "Usage" msgstr "管理" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:802 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 #, python-format msgid "Use \"%(menuName)s\" menu instead." msgstr "" @@ -17503,7 +17504,7 @@ msgstr "" #: 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/features/alerts/AlertReportModal.tsx:393 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 msgid "Value" msgstr "" @@ -18335,7 +18336,7 @@ msgstr "注釈を追加" msgid "Working" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 msgid "Working timeout" msgstr "作業タイムアウト" @@ -18843,7 +18844,7 @@ msgstr "ダッシュボードが大きすぎます。保存する前にサイズ msgid "Your query could not be saved" msgstr "クエリを保存できませんでした" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:179 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 msgid "Your query could not be scheduled" msgstr "" @@ -18851,7 +18852,7 @@ msgstr "" msgid "Your query could not be updated" msgstr "クエリを更新できませんでした" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:172 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 msgid "" "Your query has been scheduled. To see details of your query, navigate to " "Saved queries" @@ -19933,7 +19934,7 @@ msgstr "保存したクエリ" msgid "search by tags" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 #, fuzzy msgid "seconds" msgstr "30秒" diff --git a/superset/translations/ko/LC_MESSAGES/messages.po b/superset/translations/ko/LC_MESSAGES/messages.po index 5b8f13dd34c39..8b72f257d4f34 100644 --- a/superset/translations/ko/LC_MESSAGES/messages.po +++ b/superset/translations/ko/LC_MESSAGES/messages.po @@ -118,7 +118,7 @@ msgstr "" msgid " to visualize your data." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:116 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 msgid "!= (Is not equal)" msgstr "" @@ -610,7 +610,7 @@ msgstr "" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 msgid "30 days" msgstr "" @@ -692,7 +692,7 @@ msgstr "" msgid "6 hour" msgstr "6시간" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:135 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 msgid "60 days" msgstr "" @@ -719,7 +719,7 @@ msgstr "" msgid "9/91 percentiles" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:139 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 msgid "90 days" msgstr "" @@ -727,11 +727,11 @@ msgstr "" msgid ":" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:96 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 msgid "< (Smaller than)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:104 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 msgid "<= (Smaller or equal)" msgstr "" @@ -759,15 +759,15 @@ msgstr "" msgid "" msgstr "차트 유형" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:112 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 msgid "== (Is equal)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:100 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 msgid "> (Larger than)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:108 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 msgid ">= (Larger or equal)" msgstr "" @@ -819,7 +819,7 @@ msgid "" "empty will allow embedding from any domain." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:755 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:752 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:445 msgid "A list of tags that have been applied to this chart." msgstr "" @@ -850,7 +850,7 @@ msgid "" " rather than its radius or sweep angle." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:700 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 msgid "A readable URL for your dashboard" msgstr "" @@ -907,7 +907,7 @@ msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였 msgid "A timeout occurred while taking a screenshot." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:299 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 msgid "A valid color scheme is required" msgstr "" @@ -941,8 +941,8 @@ msgstr "" msgid "About" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:479 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:522 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:476 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:519 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:411 msgid "Access" msgstr "" @@ -987,7 +987,7 @@ msgstr "활동 기록" msgid "Actions" msgstr "주석" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:386 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 #: superset-frontend/src/pages/AlertReportList/index.tsx:355 msgid "Active" msgstr "" @@ -1030,7 +1030,7 @@ msgstr "" msgid "Add" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 #, fuzzy msgid "Add Alert" msgstr "차트 추가" @@ -1067,7 +1067,7 @@ msgstr "로그 추가" msgid "Add Metric" msgstr "메트릭 추가" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 msgid "Add Report" msgstr "" @@ -1195,7 +1195,7 @@ msgstr "" msgid "Add new formatter" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:374 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add notification method" msgstr "" @@ -1307,7 +1307,7 @@ msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:768 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" @@ -1437,11 +1437,11 @@ msgstr "경고" msgid "Alert Triggered, In Grace Period" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 msgid "Alert condition" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Alert condition schedule" msgstr "" @@ -1461,7 +1461,7 @@ msgstr "" msgid "Alert found an error while executing a query." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 msgid "Alert name" msgstr "테이블 명" @@ -1715,7 +1715,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:128 #: 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 @@ -2229,7 +2229,7 @@ msgstr "" msgid "Any" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:729 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:726 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:393 msgid "Any additional detail to show in the certification tooltip." msgstr "" @@ -2276,7 +2276,7 @@ msgid "" "source query satisfies the minimum periods defined in the rolling window." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:113 #: 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 @@ -2620,7 +2620,7 @@ msgstr "" msgid "Basic" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:682 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:679 #: 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 @@ -3014,7 +3014,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:646 #: 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 @@ -3157,7 +3157,7 @@ msgstr "" msgid "Centroid (Longitude and Latitude): " msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:709 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 #, fuzzy msgid "Certification" @@ -3167,7 +3167,7 @@ msgstr "주석 레이어" #: 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/dashboard/components/PropertiesModal/index.tsx:720 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 msgid "Certification details" @@ -3188,7 +3188,7 @@ msgstr "수정됨" #: 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/dashboard/components/PropertiesModal/index.tsx:711 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 msgid "Certified by" @@ -3283,7 +3283,7 @@ 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/alerts/AlertReportModal.tsx:406 #: 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 @@ -3923,7 +3923,7 @@ msgid "" "cell against the other cells in the selected range: " msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:500 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 msgid "Colors" msgstr "" @@ -4229,7 +4229,7 @@ msgstr "" msgid "Compute the contribution to the total" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 #, fuzzy msgid "Condition" msgstr "활동" @@ -4841,7 +4841,7 @@ msgstr "" msgid "Dark mode" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/home/DashboardTable.tsx:194 #: superset-frontend/src/features/home/RightMenu.tsx:228 #: superset-frontend/src/pages/DashboardList/index.tsx:672 @@ -4883,11 +4883,11 @@ msgstr "대시보드" msgid "Dashboard parameters are invalid." msgstr "대시보드 인자가 부적절합니다." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:639 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 msgid "Dashboard properties" msgstr "대시보드" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:447 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 #, fuzzy msgid "Dashboard properties updated" msgstr "대시보드" @@ -6286,7 +6286,7 @@ msgstr "" msgid "Edit" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 #, fuzzy msgid "Edit Alert" msgstr "테이블 수정" @@ -6340,7 +6340,7 @@ msgstr "메트릭 편집" msgid "Edit Plugin" msgstr "플러그인 수정" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:378 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 msgid "Edit Report" msgstr "" @@ -6703,8 +6703,8 @@ msgid "Equal to (=)" msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:140 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:295 #: 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 @@ -7685,7 +7685,7 @@ msgstr "" msgid "Google Sheet Name and URL" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Grace period" msgstr "" @@ -7968,7 +7968,7 @@ msgid "" " and recreate table) or Append (insert data)." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 msgid "Ignore cache when generating screenshot" msgstr "" @@ -8403,12 +8403,12 @@ msgstr "JSON" msgid "JSON Metadata" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:776 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:773 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:336 msgid "JSON metadata" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 msgid "JSON metadata is invalid!" msgstr "" @@ -8989,7 +8989,7 @@ msgstr "새 차트 생성" msgid "Log Scale" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 msgid "Log retention" msgstr "" @@ -10207,7 +10207,7 @@ msgstr "" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 msgid "None" msgstr "" @@ -10257,7 +10257,7 @@ msgstr "" msgid "Not in" msgstr "주석" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:120 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 msgid "Not null" msgstr "" @@ -10274,7 +10274,7 @@ msgstr "" msgid "Nothing triggered" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 #: superset-frontend/src/pages/AlertReportList/index.tsx:302 msgid "Notification method" msgstr "주석 레이어" @@ -10812,12 +10812,12 @@ msgstr "" #: 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:477 #: 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/dashboard/components/PropertiesModal/index.tsx:524 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:528 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:254 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 #: superset-frontend/src/pages/DatasetList/index.tsx:400 @@ -10835,8 +10835,8 @@ msgstr "소유자가 부적절합니다" msgid "Owners is a list of users who can alter the dashboard." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:494 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:542 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:491 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:539 msgid "" "Owners is a list of users who can alter the dashboard. Searchable by name" " or username." @@ -11030,7 +11030,7 @@ msgstr "" msgid "Person or group that has certified this chart." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:718 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 msgid "Person or group that has certified this dashboard." msgstr "" @@ -11167,7 +11167,7 @@ msgstr "" msgid "Plain" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:795 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 msgid "Please DO NOT overwrite the \"filter_scopes\" key." msgstr "" @@ -12173,11 +12173,11 @@ msgstr "차트 유형" msgid "Report failed" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 msgid "Report name" msgstr "차트 유형" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 msgid "Report schedule" msgstr "" @@ -12382,6 +12382,7 @@ msgstr "" #: 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:545 #: 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 @@ -12391,7 +12392,7 @@ msgstr "" msgid "Roles" msgstr "역할" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:562 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:559 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 " @@ -12628,7 +12629,7 @@ msgid "" "Note that you will need to close other SQL Lab windows before you do this." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 #: superset-frontend/src/features/home/SavedQueries.tsx:261 msgid "SQL Query" msgstr "Query 저장" @@ -12779,7 +12780,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:113 #: 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 @@ -12798,7 +12799,7 @@ msgstr "" #: 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/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 @@ -12994,7 +12995,7 @@ msgstr "대시보드에 차트 추가" msgid "Schedule query" msgstr "Query 공유" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 msgid "Schedule settings" msgstr "Query 공유" @@ -13460,15 +13461,15 @@ msgid "" "query by clicking on the %s button." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 msgid "Send as CSV" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:406 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 msgid "Send as PNG" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 msgid "Send as text" msgstr "" @@ -14844,7 +14845,7 @@ msgid "Tagged Object could not be deleted." msgstr "데이터베이스를 삭제할 수 없습니다." #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:736 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:733 #: 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 @@ -15040,7 +15041,7 @@ msgid "" "[country] column" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:465 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 msgid "The dashboard has been saved" msgstr "" @@ -15445,7 +15446,7 @@ msgstr "" msgid "The query contains one or more malformed template parameters." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:108 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 msgid "The query couldn't be loaded" msgstr "" @@ -15899,7 +15900,7 @@ msgid "" "parameters." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:789 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:786 #: superset/views/dashboard/mixin.py:58 msgid "" "This JSON object is generated dynamically when clicking the save or " @@ -15992,7 +15993,7 @@ msgid "" "be in %s." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:661 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 msgid "This dashboard is managed externally, and can't be edited in Superset" msgstr "" @@ -16190,7 +16191,7 @@ msgstr "" msgid "Threshold alpha level for determining significance" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 msgid "Threshold value should be double precision number" msgstr "" @@ -16394,7 +16395,7 @@ msgstr "" msgid "Time granularity" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 msgid "Time in seconds" msgstr "10초" @@ -16567,7 +16568,7 @@ msgstr "활동" #: 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/PropertiesModal/index.tsx:684 #: 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 @@ -16637,7 +16638,7 @@ msgstr "" msgid "Top to Bottom" msgstr "" -#: superset/viz.py:1010 +#: superset/viz.py:1047 msgid "Total" msgstr "" @@ -16727,7 +16728,7 @@ msgstr "" msgid "Triangle" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 msgid "Trigger Alert If..." msgstr "" @@ -16858,7 +16859,7 @@ msgstr "" msgid "URL parameters" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:696 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 msgid "URL slug" msgstr "" @@ -17145,7 +17146,7 @@ msgstr "차트 수정" msgid "Usage" msgstr "관리" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:802 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 #, python-format msgid "Use \"%(menuName)s\" menu instead." msgstr "" @@ -17321,7 +17322,7 @@ msgstr "" #: 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/features/alerts/AlertReportModal.tsx:393 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 msgid "Value" msgstr "" @@ -18144,7 +18145,7 @@ msgstr "주석" msgid "Working" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 msgid "Working timeout" msgstr "" @@ -18634,7 +18635,7 @@ msgstr "" msgid "Your query could not be saved" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:179 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 msgid "Your query could not be scheduled" msgstr "" @@ -18642,7 +18643,7 @@ msgstr "" msgid "Your query could not be updated" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:172 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 msgid "" "Your query has been scheduled. To see details of your query, navigate to " "Saved queries" @@ -19713,7 +19714,7 @@ msgstr "저장된 Query" msgid "search by tags" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 #, fuzzy msgid "seconds" msgstr "30초" diff --git a/superset/translations/messages.pot b/superset/translations/messages.pot index b6f788c03713c..a6b659826f307 100644 --- a/superset/translations/messages.pot +++ b/superset/translations/messages.pot @@ -121,7 +121,7 @@ msgstr "" msgid " to visualize your data." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:116 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 msgid "!= (Is not equal)" msgstr "" @@ -608,7 +608,7 @@ msgstr "" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 msgid "30 days" msgstr "" @@ -684,7 +684,7 @@ msgstr "" msgid "6 hour" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:135 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 msgid "60 days" msgstr "" @@ -710,7 +710,7 @@ msgstr "" msgid "9/91 percentiles" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:139 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 msgid "90 days" msgstr "" @@ -718,11 +718,11 @@ msgstr "" msgid ":" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:96 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 msgid "< (Smaller than)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:104 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 msgid "<= (Smaller or equal)" msgstr "" @@ -747,15 +747,15 @@ msgstr "" msgid "" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:112 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 msgid "== (Is equal)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:100 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 msgid "> (Larger than)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:108 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 msgid ">= (Larger or equal)" msgstr "" @@ -805,7 +805,7 @@ msgid "" "empty will allow embedding from any domain." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:755 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:752 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:445 msgid "A list of tags that have been applied to this chart." msgstr "" @@ -836,7 +836,7 @@ msgid "" " rather than its radius or sweep angle." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:700 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 msgid "A readable URL for your dashboard" msgstr "" @@ -891,7 +891,7 @@ msgstr "" msgid "A timeout occurred while taking a screenshot." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:299 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 msgid "A valid color scheme is required" msgstr "" @@ -925,8 +925,8 @@ msgstr "" msgid "About" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:479 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:522 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:476 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:519 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:411 msgid "Access" msgstr "" @@ -971,7 +971,7 @@ msgstr "" msgid "Actions" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:386 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 #: superset-frontend/src/pages/AlertReportList/index.tsx:355 msgid "Active" msgstr "" @@ -1011,7 +1011,7 @@ msgstr "" msgid "Add" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 msgid "Add Alert" msgstr "" @@ -1047,7 +1047,7 @@ msgstr "" msgid "Add Metric" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 msgid "Add Report" msgstr "" @@ -1167,7 +1167,7 @@ msgstr "" msgid "Add new formatter" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:374 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add notification method" msgstr "" @@ -1270,7 +1270,7 @@ msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:768 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" @@ -1396,11 +1396,11 @@ msgstr "" msgid "Alert Triggered, In Grace Period" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 msgid "Alert condition" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Alert condition schedule" msgstr "" @@ -1420,7 +1420,7 @@ msgstr "" msgid "Alert found an error while executing a query." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 msgid "Alert name" msgstr "" @@ -1673,7 +1673,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:128 #: 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 @@ -2163,7 +2163,7 @@ msgstr "" msgid "Any" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:729 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:726 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:393 msgid "Any additional detail to show in the certification tooltip." msgstr "" @@ -2210,7 +2210,7 @@ msgid "" "source query satisfies the minimum periods defined in the rolling window." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:113 #: 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 @@ -2538,7 +2538,7 @@ msgstr "" msgid "Basic" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:682 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:679 #: 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 @@ -2925,7 +2925,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:646 #: 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 @@ -3064,7 +3064,7 @@ msgstr "" msgid "Centroid (Longitude and Latitude): " msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:709 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 msgid "Certification" msgstr "" @@ -3073,7 +3073,7 @@ msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:720 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 msgid "Certification details" @@ -3092,7 +3092,7 @@ msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:711 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 msgid "Certified by" @@ -3186,7 +3186,7 @@ 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/alerts/AlertReportModal.tsx:406 #: 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 @@ -3801,7 +3801,7 @@ msgid "" "cell against the other cells in the selected range: " msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:500 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 msgid "Colors" msgstr "" @@ -4095,7 +4095,7 @@ msgstr "" msgid "Compute the contribution to the total" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 msgid "Condition" msgstr "" @@ -4680,7 +4680,7 @@ msgstr "" msgid "Dark mode" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/home/DashboardTable.tsx:194 #: superset-frontend/src/features/home/RightMenu.tsx:228 #: superset-frontend/src/pages/DashboardList/index.tsx:672 @@ -4721,11 +4721,11 @@ msgstr "" msgid "Dashboard parameters are invalid." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:639 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 msgid "Dashboard properties" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:447 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 msgid "Dashboard properties updated" msgstr "" @@ -6092,7 +6092,7 @@ msgstr "" msgid "Edit" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 msgid "Edit Alert" msgstr "" @@ -6144,7 +6144,7 @@ msgstr "" msgid "Edit Plugin" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:378 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 msgid "Edit Report" msgstr "" @@ -6495,8 +6495,8 @@ msgid "Equal to (=)" msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:140 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:295 #: 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 @@ -7444,7 +7444,7 @@ msgstr "" msgid "Google Sheet Name and URL" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Grace period" msgstr "" @@ -7718,7 +7718,7 @@ msgid "" " and recreate table) or Append (insert data)." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 msgid "Ignore cache when generating screenshot" msgstr "" @@ -8136,12 +8136,12 @@ msgstr "" msgid "JSON Metadata" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:776 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:773 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:336 msgid "JSON metadata" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 msgid "JSON metadata is invalid!" msgstr "" @@ -8703,7 +8703,7 @@ msgstr "" msgid "Log Scale" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 msgid "Log retention" msgstr "" @@ -9877,7 +9877,7 @@ msgstr "" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 msgid "None" msgstr "" @@ -9925,7 +9925,7 @@ msgstr "" msgid "Not in" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:120 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 msgid "Not null" msgstr "" @@ -9942,7 +9942,7 @@ msgstr "" msgid "Nothing triggered" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 #: superset-frontend/src/pages/AlertReportList/index.tsx:302 msgid "Notification method" msgstr "" @@ -10470,12 +10470,12 @@ msgstr "" #: 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:477 #: 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/dashboard/components/PropertiesModal/index.tsx:524 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:528 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:254 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 #: superset-frontend/src/pages/DatasetList/index.tsx:400 @@ -10493,8 +10493,8 @@ msgstr "" msgid "Owners is a list of users who can alter the dashboard." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:494 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:542 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:491 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:539 msgid "" "Owners is a list of users who can alter the dashboard. Searchable by name" " or username." @@ -10682,7 +10682,7 @@ msgstr "" msgid "Person or group that has certified this chart." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:718 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 msgid "Person or group that has certified this dashboard." msgstr "" @@ -10817,7 +10817,7 @@ msgstr "" msgid "Plain" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:795 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 msgid "Please DO NOT overwrite the \"filter_scopes\" key." msgstr "" @@ -11787,11 +11787,11 @@ msgstr "" msgid "Report failed" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 msgid "Report name" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 msgid "Report schedule" msgstr "" @@ -11991,6 +11991,7 @@ msgstr "" #: 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:545 #: 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 @@ -12000,7 +12001,7 @@ msgstr "" msgid "Roles" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:562 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:559 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 " @@ -12235,7 +12236,7 @@ msgid "" "Note that you will need to close other SQL Lab windows before you do this." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 #: superset-frontend/src/features/home/SavedQueries.tsx:261 msgid "SQL Query" msgstr "" @@ -12377,7 +12378,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:113 #: 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 @@ -12396,7 +12397,7 @@ msgstr "" #: 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/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 @@ -12581,7 +12582,7 @@ msgstr "" msgid "Schedule query" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 msgid "Schedule settings" msgstr "" @@ -13014,15 +13015,15 @@ msgid "" "query by clicking on the %s button." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 msgid "Send as CSV" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:406 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 msgid "Send as PNG" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 msgid "Send as text" msgstr "" @@ -14339,7 +14340,7 @@ msgid "Tagged Object could not be deleted." msgstr "" #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:736 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:733 #: 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 @@ -14527,7 +14528,7 @@ msgid "" "[country] column" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:465 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 msgid "The dashboard has been saved" msgstr "" @@ -14927,7 +14928,7 @@ msgstr "" msgid "The query contains one or more malformed template parameters." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:108 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 msgid "The query couldn't be loaded" msgstr "" @@ -15377,7 +15378,7 @@ msgid "" "parameters." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:789 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:786 #: superset/views/dashboard/mixin.py:58 msgid "" "This JSON object is generated dynamically when clicking the save or " @@ -15470,7 +15471,7 @@ msgid "" "be in %s." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:661 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 msgid "This dashboard is managed externally, and can't be edited in Superset" msgstr "" @@ -15666,7 +15667,7 @@ msgstr "" msgid "Threshold alpha level for determining significance" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 msgid "Threshold value should be double precision number" msgstr "" @@ -15861,7 +15862,7 @@ msgstr "" msgid "Time granularity" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 msgid "Time in seconds" msgstr "" @@ -16022,7 +16023,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:684 #: 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 @@ -16086,7 +16087,7 @@ msgstr "" msgid "Top to Bottom" msgstr "" -#: superset/viz.py:1010 +#: superset/viz.py:1047 msgid "Total" msgstr "" @@ -16173,7 +16174,7 @@ msgstr "" msgid "Triangle" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 msgid "Trigger Alert If..." msgstr "" @@ -16302,7 +16303,7 @@ msgstr "" msgid "URL parameters" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:696 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 msgid "URL slug" msgstr "" @@ -16576,7 +16577,7 @@ msgstr "" msgid "Usage" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:802 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 #, python-format msgid "Use \"%(menuName)s\" menu instead." msgstr "" @@ -16749,7 +16750,7 @@ msgstr "" #: 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/features/alerts/AlertReportModal.tsx:393 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 msgid "Value" msgstr "" @@ -17566,7 +17567,7 @@ msgstr "" msgid "Working" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 msgid "Working timeout" msgstr "" @@ -18054,7 +18055,7 @@ msgstr "" msgid "Your query could not be saved" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:179 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 msgid "Your query could not be scheduled" msgstr "" @@ -18062,7 +18063,7 @@ msgstr "" msgid "Your query could not be updated" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:172 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 msgid "" "Your query has been scheduled. To see details of your query, navigate to " "Saved queries" @@ -19085,7 +19086,7 @@ msgstr "" msgid "search by tags" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 msgid "seconds" msgstr "" diff --git a/superset/translations/nl/LC_MESSAGES/messages.po b/superset/translations/nl/LC_MESSAGES/messages.po index d0be176b34a94..eb49e6720abdd 100644 --- a/superset/translations/nl/LC_MESSAGES/messages.po +++ b/superset/translations/nl/LC_MESSAGES/messages.po @@ -133,7 +133,7 @@ msgstr "" msgid " to visualize your data." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:116 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 msgid "!= (Is not equal)" msgstr "!= (Is niet gelijk)" @@ -640,7 +640,7 @@ msgstr "" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 msgid "30 days" msgstr "30 dagen" @@ -720,7 +720,7 @@ msgstr "Week beginnend op maandag" msgid "6 hour" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:135 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 msgid "60 days" msgstr "60 dagen" @@ -747,7 +747,7 @@ msgstr "" msgid "9/91 percentiles" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:139 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 msgid "90 days" msgstr "90 dagen" @@ -755,11 +755,11 @@ msgstr "90 dagen" msgid ":" msgstr ":" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:96 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 msgid "< (Smaller than)" msgstr "< (Kleiner dan)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:104 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 msgid "<= (Smaller or equal)" msgstr "<= (Kleiner of gelijk)" @@ -787,15 +787,15 @@ msgstr "Ruimtelijk" msgid "" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:112 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 msgid "== (Is equal)" msgstr "== (Is gelijk)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:100 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 msgid "> (Larger than)" msgstr "> (Groter dan)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:108 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 msgid ">= (Larger or equal)" msgstr ">= (Groter of gelijk)" @@ -853,7 +853,7 @@ msgid "" "empty will allow embedding from any domain." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:755 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:752 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:445 msgid "A list of tags that have been applied to this chart." msgstr "" @@ -884,7 +884,7 @@ msgid "" " rather than its radius or sweep angle." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:700 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 msgid "A readable URL for your dashboard" msgstr "Een leesbare URL voor uw dashboard" @@ -941,7 +941,7 @@ msgstr "" msgid "A timeout occurred while taking a screenshot." msgstr "Er is een time-out opgetreden tijdens het maken van een screenshot." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:299 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 msgid "A valid color scheme is required" msgstr "Een geldig kleurenschema is vereist" @@ -975,8 +975,8 @@ msgstr "" msgid "About" msgstr "Over" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:479 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:522 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:476 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:519 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:411 msgid "Access" msgstr "Toegang" @@ -1021,7 +1021,7 @@ msgstr "Actie Log" msgid "Actions" msgstr "Acties" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:386 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 #: superset-frontend/src/pages/AlertReportList/index.tsx:355 msgid "Active" msgstr "Actief" @@ -1064,7 +1064,7 @@ msgstr "" msgid "Add" msgstr "Voeg toe" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 msgid "Add Alert" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "Voeg Log toe" msgid "Add Metric" msgstr "Voeg meeteenheid toe" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 msgid "Add Report" msgstr "" @@ -1225,7 +1225,7 @@ msgstr "" msgid "Add new formatter" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:374 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add notification method" msgstr "Meldingsmethode toevoegen" @@ -1330,7 +1330,7 @@ msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:768 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" @@ -1462,11 +1462,11 @@ msgstr "Waarschuwing" msgid "Alert Triggered, In Grace Period" msgstr "Waarschuwing geactiveerd, in grace periode" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 msgid "Alert condition" msgstr "Naam waarschuwingsconditie" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Alert condition schedule" msgstr "Waarschuwing conditie planning" @@ -1486,7 +1486,7 @@ msgstr "Waarschuwing afgevuurd tijdens grace period." msgid "Alert found an error while executing a query." msgstr "Alert heeft een fout gevonden tijdens het uitvoeren van een query." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 msgid "Alert name" msgstr "Naam van de waarschuwing" @@ -1744,7 +1744,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:128 #: 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 @@ -2290,7 +2290,7 @@ msgstr "Aantekeningen konden niet worden verwijderd." msgid "Any" msgstr "Elke" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:729 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:726 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:393 msgid "Any additional detail to show in the certification tooltip." msgstr "" @@ -2339,7 +2339,7 @@ msgid "" "source query satisfies the minimum periods defined in the rolling window." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:113 #: 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 @@ -2679,7 +2679,7 @@ msgstr "" msgid "Basic" msgstr "Berekende kolom [%s] vereist een uitdrukking" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:682 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:679 #: 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 @@ -3073,7 +3073,7 @@ msgstr "Overlapping tussen Series en Breakdowns is niet mogelijk" #: 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/PropertiesModal/index.tsx:646 #: 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 @@ -3217,7 +3217,7 @@ msgstr "" msgid "Centroid (Longitude and Latitude): " msgstr "Ongeldige longitude/latitude" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:709 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 msgid "Certification" msgstr "" @@ -3226,7 +3226,7 @@ msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:720 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 msgid "Certification details" @@ -3245,7 +3245,7 @@ msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:711 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 msgid "Certified by" @@ -3343,7 +3343,7 @@ 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/alerts/AlertReportModal.tsx:406 #: 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 @@ -3974,7 +3974,7 @@ msgid "" "cell against the other cells in the selected range: " msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:500 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 msgid "Colors" msgstr "Kleuren" @@ -4277,7 +4277,7 @@ msgstr "" msgid "Compute the contribution to the total" msgstr "Bereken de bijdrage aan het totaal" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 msgid "Condition" msgstr "" @@ -4880,7 +4880,7 @@ msgstr "" msgid "Dark mode" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/home/DashboardTable.tsx:194 #: superset-frontend/src/features/home/RightMenu.tsx:228 #: superset-frontend/src/pages/DashboardList/index.tsx:672 @@ -4921,11 +4921,11 @@ msgstr "" msgid "Dashboard parameters are invalid." msgstr "Dashboard parameters zijn ongeldig." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:639 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 msgid "Dashboard properties" msgstr "Dashboard eigenschappen" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:447 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 msgid "Dashboard properties updated" msgstr "" @@ -6326,7 +6326,7 @@ msgstr "" msgid "Edit" msgstr "Bewerk" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 msgid "Edit Alert" msgstr "" @@ -6379,7 +6379,7 @@ msgstr "Bewerk meeteenheid" msgid "Edit Plugin" msgstr "Bewerk Plugin" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:378 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 msgid "Edit Report" msgstr "" @@ -6742,8 +6742,8 @@ msgid "Equal to (=)" msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:140 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:295 #: 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 @@ -7709,7 +7709,7 @@ msgstr "" msgid "Google Sheet Name and URL" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Grace period" msgstr "Grace periode" @@ -7995,7 +7995,7 @@ msgid "" " and recreate table) or Append (insert data)." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 #, fuzzy msgid "Ignore cache when generating screenshot" msgstr "" @@ -8428,12 +8428,12 @@ msgstr "JSON" msgid "JSON Metadata" msgstr "JSON Metadata" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:776 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:773 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:336 msgid "JSON metadata" msgstr "JSON metadata" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 #, fuzzy msgid "JSON metadata is invalid!" msgstr "json is ongeldig" @@ -9013,7 +9013,7 @@ msgstr "Maak een nieuwe grafiek" msgid "Log Scale" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 msgid "Log retention" msgstr "Log retentie" @@ -10227,7 +10227,7 @@ msgstr "" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 msgid "None" msgstr "Geen" @@ -10278,7 +10278,7 @@ msgstr "!= (Is niet gelijk)" msgid "Not in" msgstr "aantekening" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:120 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 msgid "Not null" msgstr "Not null" @@ -10295,7 +10295,7 @@ msgstr "" msgid "Nothing triggered" msgstr "Niets getriggerd" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 #: superset-frontend/src/pages/AlertReportList/index.tsx:302 msgid "Notification method" msgstr "Methode voor kennisgeving" @@ -10835,12 +10835,12 @@ msgstr "Eigenaar" #: 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:477 #: 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/dashboard/components/PropertiesModal/index.tsx:524 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:528 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:254 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 #: superset-frontend/src/pages/DatasetList/index.tsx:400 @@ -10858,8 +10858,8 @@ msgstr "Eigenaren zijn ongeldig" msgid "Owners is a list of users who can alter the dashboard." msgstr "Eigenaars is een lijst van gebruikers die het dashboard kunnen wijzigen." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:494 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:542 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:491 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:539 msgid "" "Owners is a list of users who can alter the dashboard. Searchable by name" " or username." @@ -11047,7 +11047,7 @@ msgstr "" msgid "Person or group that has certified this chart." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:718 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 msgid "Person or group that has certified this dashboard." msgstr "" @@ -11182,7 +11182,7 @@ msgstr "" msgid "Plain" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:795 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 msgid "Please DO NOT overwrite the \"filter_scopes\" key." msgstr "" @@ -12178,11 +12178,11 @@ msgstr "" msgid "Report failed" msgstr "Rapport mislukt" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 msgid "Report name" msgstr "Naam rapport" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 msgid "Report schedule" msgstr "Rapportageplanning" @@ -12391,6 +12391,7 @@ msgstr "" #: 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:545 #: 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 @@ -12400,7 +12401,7 @@ msgstr "" msgid "Roles" msgstr "Rollen" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:562 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:559 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 " @@ -12637,7 +12638,7 @@ msgid "" "Note that you will need to close other SQL Lab windows before you do this." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 #: superset-frontend/src/features/home/SavedQueries.tsx:261 msgid "SQL Query" msgstr "SQL Query" @@ -12789,7 +12790,7 @@ msgstr "Zaterdag" #: 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/PropertiesModal/index.tsx:113 #: 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 @@ -12808,7 +12809,7 @@ msgstr "Zaterdag" #: 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/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 @@ -13001,7 +13002,7 @@ msgstr "" msgid "Schedule query" msgstr "Query planning" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 msgid "Schedule settings" msgstr "Planning instellingen" @@ -13457,15 +13458,15 @@ msgid "" "query by clicking on the %s button." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 msgid "Send as CSV" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:406 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 msgid "Send as PNG" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 msgid "Send as text" msgstr "" @@ -14822,7 +14823,7 @@ msgid "Tagged Object could not be deleted." msgstr "Dataset kon niet worden verwijderd." #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:736 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:733 #: 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 @@ -15012,7 +15013,7 @@ msgid "" "[country] column" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:465 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 msgid "The dashboard has been saved" msgstr "Het dashboard is opgeslagen" @@ -15426,7 +15427,7 @@ msgstr "" msgid "The query contains one or more malformed template parameters." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:108 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 msgid "The query couldn't be loaded" msgstr "De query kon niet geladen worden" @@ -15896,7 +15897,7 @@ msgid "" "parameters." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:789 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:786 #: superset/views/dashboard/mixin.py:58 msgid "" "This JSON object is generated dynamically when clicking the save or " @@ -15989,7 +15990,7 @@ msgid "" "be in %s." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:661 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 msgid "This dashboard is managed externally, and can't be edited in Superset" msgstr "" @@ -16196,7 +16197,7 @@ msgstr "" msgid "Threshold alpha level for determining significance" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 msgid "Threshold value should be double precision number" msgstr "" @@ -16393,7 +16394,7 @@ msgstr "Time grain ontbreekt" msgid "Time granularity" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 msgid "Time in seconds" msgstr "Tijd in seconden" @@ -16558,7 +16559,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:684 #: 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 @@ -16623,7 +16624,7 @@ msgstr "" msgid "Top to Bottom" msgstr "" -#: superset/viz.py:1010 +#: superset/viz.py:1047 msgid "Total" msgstr "" @@ -16711,7 +16712,7 @@ msgstr "" msgid "Triangle" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 msgid "Trigger Alert If..." msgstr "Trigger waarschuwing als…" @@ -16842,7 +16843,7 @@ msgstr "" msgid "URL parameters" msgstr "URL parameters" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:696 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 msgid "URL slug" msgstr "URL slag" @@ -17125,7 +17126,7 @@ msgstr "Bewerk database" msgid "Usage" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:802 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 #, python-format msgid "Use \"%(menuName)s\" menu instead." msgstr "" @@ -17298,7 +17299,7 @@ msgstr "" #: 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/features/alerts/AlertReportModal.tsx:393 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 msgid "Value" msgstr "Waarde" @@ -18134,7 +18135,7 @@ msgstr "" msgid "Working" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 msgid "Working timeout" msgstr "Time-out" @@ -18638,7 +18639,7 @@ msgstr "" msgid "Your query could not be saved" msgstr "Uw zoekopdracht kon niet worden opgeslagen" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:179 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 msgid "Your query could not be scheduled" msgstr "Uw vraag kon niet worden gepland" @@ -18646,7 +18647,7 @@ msgstr "Uw vraag kon niet worden gepland" msgid "Your query could not be updated" msgstr "Uw zoekopdracht kon niet worden bijgewerkt" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:172 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 msgid "" "Your query has been scheduled. To see details of your query, navigate to " "Saved queries" @@ -19718,7 +19719,7 @@ msgstr "" msgid "search by tags" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 #, fuzzy msgid "seconds" msgstr "30 seconden" diff --git a/superset/translations/pt/LC_MESSAGES/messages.po b/superset/translations/pt/LC_MESSAGES/messages.po index 0e8d1431c8b4a..8c60c54be25ec 100644 --- a/superset/translations/pt/LC_MESSAGES/messages.po +++ b/superset/translations/pt/LC_MESSAGES/messages.po @@ -119,7 +119,7 @@ msgstr "" msgid " to visualize your data." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:116 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 msgid "!= (Is not equal)" msgstr "" @@ -619,7 +619,7 @@ msgstr "" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 msgid "30 days" msgstr "" @@ -702,7 +702,7 @@ msgstr "" msgid "6 hour" msgstr "hora" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:135 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 msgid "60 days" msgstr "" @@ -729,7 +729,7 @@ msgstr "" msgid "9/91 percentiles" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:139 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 msgid "90 days" msgstr "" @@ -737,11 +737,11 @@ msgstr "" msgid ":" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:96 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 msgid "< (Smaller than)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:104 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 msgid "<= (Smaller or equal)" msgstr "" @@ -768,15 +768,15 @@ msgstr "" msgid "" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:112 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 msgid "== (Is equal)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:100 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 msgid "> (Larger than)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:108 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 msgid ">= (Larger or equal)" msgstr "" @@ -828,7 +828,7 @@ msgid "" "empty will allow embedding from any domain." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:755 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:752 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:445 msgid "A list of tags that have been applied to this chart." msgstr "" @@ -859,7 +859,7 @@ msgid "" " rather than its radius or sweep angle." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:700 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 msgid "A readable URL for your dashboard" msgstr "Obter um URL legível para o seu dashboard" @@ -920,7 +920,7 @@ msgstr "Ocorreu um erro ao criar a origem dos dados" msgid "A timeout occurred while taking a screenshot." msgstr "Ocorreu um erro ao carregar os metadados da tabela" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:299 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 msgid "A valid color scheme is required" msgstr "" @@ -954,8 +954,8 @@ msgstr "" msgid "About" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:479 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:522 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:476 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:519 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:411 msgid "Access" msgstr "Não há acesso!" @@ -1000,7 +1000,7 @@ msgstr "Registo de Acções" msgid "Actions" msgstr "Acção" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:386 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 #: superset-frontend/src/pages/AlertReportList/index.tsx:355 msgid "Active" msgstr "Acção" @@ -1043,7 +1043,7 @@ msgstr "" msgid "Add" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 #, fuzzy msgid "Add Alert" msgstr "Gráfico de Queijo" @@ -1081,7 +1081,7 @@ msgstr "" msgid "Add Metric" msgstr "Adicionar Métrica" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 #, fuzzy msgid "Add Report" msgstr "Janela de exibição" @@ -1213,7 +1213,7 @@ msgstr "" msgid "Add new formatter" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:374 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add notification method" msgstr "Metadados adicionais" @@ -1325,7 +1325,7 @@ msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:768 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" @@ -1464,12 +1464,12 @@ msgstr "Mover gráfico" msgid "Alert Triggered, In Grace Period" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 #, fuzzy msgid "Alert condition" msgstr "Conexão de teste" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 #, fuzzy msgid "Alert condition schedule" msgstr "Conexão de teste" @@ -1491,7 +1491,7 @@ msgstr "" msgid "Alert found an error while executing a query." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 #, fuzzy msgid "Alert name" msgstr "Tipo de gráfico" @@ -1751,7 +1751,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:128 #: 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 @@ -2273,7 +2273,7 @@ msgstr "" msgid "Any" msgstr "dia" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:729 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:726 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:393 msgid "Any additional detail to show in the certification tooltip." msgstr "" @@ -2320,7 +2320,7 @@ msgid "" "source query satisfies the minimum periods defined in the rolling window." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:113 #: 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 @@ -2667,7 +2667,7 @@ msgstr "" msgid "Basic" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:682 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:679 #: 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 @@ -3068,7 +3068,7 @@ msgstr "Não pode haver sobreposição entre Séries e Desagregação" #: 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/PropertiesModal/index.tsx:646 #: 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 @@ -3213,7 +3213,7 @@ msgstr "" msgid "Centroid (Longitude and Latitude): " msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:709 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 msgid "Certification" msgstr "" @@ -3222,7 +3222,7 @@ msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:720 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 msgid "Certification details" @@ -3241,7 +3241,7 @@ msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:711 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 #, fuzzy @@ -3338,7 +3338,7 @@ 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/alerts/AlertReportModal.tsx:406 #: 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 @@ -3989,7 +3989,7 @@ msgid "" "cell against the other cells in the selected range: " msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:500 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 msgid "Colors" msgstr "Cor" @@ -4296,7 +4296,7 @@ msgstr "" msgid "Compute the contribution to the total" msgstr "Calcular contribuição para o total" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 #, fuzzy msgid "Condition" msgstr "Contribuição" @@ -4920,7 +4920,7 @@ msgstr "" msgid "Dark mode" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/home/DashboardTable.tsx:194 #: superset-frontend/src/features/home/RightMenu.tsx:228 #: superset-frontend/src/pages/DashboardList/index.tsx:672 @@ -4962,12 +4962,12 @@ msgstr "[Nome do dashboard]" msgid "Dashboard parameters are invalid." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:639 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 #, fuzzy msgid "Dashboard properties" msgstr "Editar propriedades do dashboard" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:447 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 #, fuzzy msgid "Dashboard properties updated" msgstr "Editar propriedades do dashboard" @@ -6407,7 +6407,7 @@ msgstr "Largura" msgid "Edit" msgstr "Editar" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 #, fuzzy msgid "Edit Alert" msgstr "Editar Tabela" @@ -6462,7 +6462,7 @@ msgstr "Editar Métrica" msgid "Edit Plugin" msgstr "Editar Coluna" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:378 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 #, fuzzy msgid "Edit Report" msgstr "Janela de exibição" @@ -6834,8 +6834,8 @@ msgid "Equal to (=)" msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:140 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:295 #: 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 @@ -7835,7 +7835,7 @@ msgstr "" msgid "Google Sheet Name and URL" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 #, fuzzy msgid "Grace period" msgstr "Períodos" @@ -8138,7 +8138,7 @@ msgid "" " and recreate table) or Append (insert data)." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 msgid "Ignore cache when generating screenshot" msgstr "" @@ -8574,13 +8574,13 @@ msgstr "JSON" msgid "JSON Metadata" msgstr "Metadados JSON" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:776 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:773 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:336 #, fuzzy msgid "JSON metadata" msgstr "Atualizar coluna de metadados" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 #, fuzzy msgid "JSON metadata is invalid!" msgstr "Atualizar coluna de metadados" @@ -9169,7 +9169,7 @@ msgstr "Crie uma nova visualização" msgid "Log Scale" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 #, fuzzy msgid "Log retention" msgstr "Anotações" @@ -10412,7 +10412,7 @@ msgstr "Tamanho da bolha" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 msgid "None" msgstr "" @@ -10462,7 +10462,7 @@ msgstr "" msgid "Not in" msgstr "Anotações" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:120 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 msgid "Not null" msgstr "" @@ -10479,7 +10479,7 @@ msgstr "" msgid "Nothing triggered" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 #: superset-frontend/src/pages/AlertReportList/index.tsx:302 #, fuzzy msgid "Notification method" @@ -11030,12 +11030,12 @@ msgstr "Proprietário" #: 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:477 #: 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/dashboard/components/PropertiesModal/index.tsx:524 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:528 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:254 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 #: superset-frontend/src/pages/DatasetList/index.tsx:400 @@ -11053,8 +11053,8 @@ msgstr "" msgid "Owners is a list of users who can alter the dashboard." msgstr "Proprietários é uma lista de utilizadores que podem alterar o dashboard." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:494 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:542 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:491 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:539 msgid "" "Owners is a list of users who can alter the dashboard. Searchable by name" " or username." @@ -11249,7 +11249,7 @@ msgstr "" msgid "Person or group that has certified this chart." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:718 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 msgid "Person or group that has certified this dashboard." msgstr "" @@ -11388,7 +11388,7 @@ msgstr "" msgid "Plain" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:795 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 msgid "Please DO NOT overwrite the \"filter_scopes\" key." msgstr "" @@ -12412,12 +12412,12 @@ msgstr "Janela de exibição" msgid "Report failed" msgstr "Nome do modelo" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 #, fuzzy msgid "Report name" msgstr "Nome do modelo" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 #, fuzzy msgid "Report schedule" msgstr "" @@ -12634,6 +12634,7 @@ msgstr "" #: 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:545 #: 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 @@ -12643,7 +12644,7 @@ msgstr "" msgid "Roles" msgstr "Cargo" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:562 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:559 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 " @@ -12886,7 +12887,7 @@ msgid "" "Note that you will need to close other SQL Lab windows before you do this." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 #: superset-frontend/src/features/home/SavedQueries.tsx:261 msgid "SQL Query" msgstr "Gravar query" @@ -13038,7 +13039,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:113 #: 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 @@ -13057,7 +13058,7 @@ msgstr "" #: 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/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 @@ -13257,7 +13258,7 @@ msgstr "" msgid "Schedule query" msgstr "Gravar query" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 msgid "Schedule settings" msgstr "" @@ -13728,15 +13729,15 @@ msgid "" "query by clicking on the %s button." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 msgid "Send as CSV" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:406 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 msgid "Send as PNG" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 msgid "Send as text" msgstr "" @@ -15126,7 +15127,7 @@ msgid "Tagged Object could not be deleted." msgstr "Não foi possível carregar a query" #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:736 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:733 #: 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 @@ -15328,7 +15329,7 @@ msgid "" "[country] column" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:465 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 msgid "The dashboard has been saved" msgstr "Dashboard gravado com sucesso." @@ -15751,7 +15752,7 @@ msgstr "" msgid "The query contains one or more malformed template parameters." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:108 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 msgid "The query couldn't be loaded" msgstr "Não foi possível carregar a query" @@ -16237,7 +16238,7 @@ msgstr "" "referência e para utilizadores avançados que desejam alterar parâmetros " "específicos." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:789 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:786 #: superset/views/dashboard/mixin.py:58 msgid "" "This JSON object is generated dynamically when clicking the save or " @@ -16333,7 +16334,7 @@ msgid "" "be in %s." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:661 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 msgid "This dashboard is managed externally, and can't be edited in Superset" msgstr "" @@ -16542,7 +16543,7 @@ msgstr "" msgid "Threshold alpha level for determining significance" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 msgid "Threshold value should be double precision number" msgstr "" @@ -16749,7 +16750,7 @@ msgstr "Granularidade Temporal" msgid "Time granularity" msgstr "Granularidade temporal" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 msgid "Time in seconds" msgstr "10 segundos" @@ -16927,7 +16928,7 @@ msgstr "Mín" #: 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/PropertiesModal/index.tsx:684 #: 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 @@ -16997,7 +16998,7 @@ msgstr "" msgid "Top to Bottom" msgstr "" -#: superset/viz.py:1010 +#: superset/viz.py:1047 msgid "Total" msgstr "" @@ -17088,7 +17089,7 @@ msgstr "" msgid "Triangle" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 msgid "Trigger Alert If..." msgstr "" @@ -17221,7 +17222,7 @@ msgstr "Parâmetros" msgid "URL parameters" msgstr "Parâmetros" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:696 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 msgid "URL slug" msgstr "" @@ -17501,7 +17502,7 @@ msgstr "Selecione uma base de dados" msgid "Usage" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:802 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 #, python-format msgid "Use \"%(menuName)s\" menu instead." msgstr "" @@ -17677,7 +17678,7 @@ msgstr "" #: 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/features/alerts/AlertReportModal.tsx:393 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 msgid "Value" msgstr "Mostrar valores das barras" @@ -18524,7 +18525,7 @@ msgstr "Anotações" msgid "Working" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 msgid "Working timeout" msgstr "" @@ -19026,7 +19027,7 @@ msgstr "" msgid "Your query could not be saved" msgstr "Não foi possível gravar a sua query" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:179 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 msgid "Your query could not be scheduled" msgstr "Não foi possível gravar a sua query" @@ -19034,7 +19035,7 @@ msgstr "Não foi possível gravar a sua query" msgid "Your query could not be updated" msgstr "Não foi possível gravar a sua query" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:172 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 msgid "" "Your query has been scheduled. To see details of your query, navigate to " "Saved queries" @@ -20109,7 +20110,7 @@ msgstr "Queries Gravadas" msgid "search by tags" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 #, fuzzy msgid "seconds" msgstr "30 segundos" diff --git a/superset/translations/pt_BR/LC_MESSAGES/messages.json b/superset/translations/pt_BR/LC_MESSAGES/messages.json index e83d89bc8cc6f..09daf9901fc29 100644 --- a/superset/translations/pt_BR/LC_MESSAGES/messages.json +++ b/superset/translations/pt_BR/LC_MESSAGES/messages.json @@ -4167,9 +4167,6 @@ "Shows or hides markers for the time series": [ "Mostra ou esconde marcadores para a série temporal" ], - "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 hierarchically.": [ - "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." - ], "Significance Level": ["Nível de significância"], "Simple": ["Simples"], "Simple ad-hoc metrics are not enabled for this dataset": [ diff --git a/superset/translations/ru/LC_MESSAGES/messages.po b/superset/translations/ru/LC_MESSAGES/messages.po index 9340423bb34c9..e2efc535c43eb 100644 --- a/superset/translations/ru/LC_MESSAGES/messages.po +++ b/superset/translations/ru/LC_MESSAGES/messages.po @@ -133,7 +133,7 @@ msgstr " в Лаборатории SQL. Там вы сможете сохран msgid " to visualize your data." msgstr " для визуализации ваших данных." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:116 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 msgid "!= (Is not equal)" msgstr "!= (не равно)" @@ -658,7 +658,7 @@ msgstr "3 года назад" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 msgid "30 days" msgstr "30 дней" @@ -734,7 +734,7 @@ msgstr "52 недели с началом в Понедельник (част=52 msgid "6 hour" msgstr "6 часов" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:135 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 msgid "60 days" msgstr "60 дней" @@ -760,7 +760,7 @@ msgstr "7Д" msgid "9/91 percentiles" msgstr "9/91 перцентели" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:139 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 msgid "90 days" msgstr "90 дней" @@ -768,11 +768,11 @@ msgstr "90 дней" msgid ":" msgstr ":" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:96 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 msgid "< (Smaller than)" msgstr "< (меньше чем)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:104 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 msgid "<= (Smaller or equal)" msgstr "<= (меньше или равно)" @@ -797,15 +797,15 @@ msgstr "<новая пространственная мера>" msgid "" msgstr "<без типа>" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:112 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 msgid "== (Is equal)" msgstr "== (равно)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:100 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 msgid "> (Larger than)" msgstr "> (больше чем)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:108 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 msgid ">= (Larger or equal)" msgstr ">= (больше или равно)" @@ -863,7 +863,7 @@ msgstr "" "Список доменных имен, которые могут встраивать этот дашборд. Если " "оставить поле пустым, любой домен сможет сделать встраивание." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:755 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:752 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:445 #, fuzzy msgid "A list of tags that have been applied to this chart." @@ -895,7 +895,7 @@ msgid "" " rather than its radius or sweep angle." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:700 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 msgid "A readable URL for your dashboard" msgstr "Читаемый URL-адрес для дашборда" @@ -955,7 +955,7 @@ msgstr "Вышло время создания датафрейма." msgid "A timeout occurred while taking a screenshot." msgstr "Вышло время создания скриншота." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:299 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 msgid "A valid color scheme is required" msgstr "Требуется корректная цветовая схема" @@ -989,8 +989,8 @@ msgstr "ПОЛОЖЕНИЕ ЗАГОЛОВКА ОСИ" msgid "About" msgstr "О программе" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:479 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:522 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:476 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:519 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:411 msgid "Access" msgstr "Доступ" @@ -1035,7 +1035,7 @@ msgstr "Журнал действий" msgid "Actions" msgstr "Действия" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:386 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 #: superset-frontend/src/pages/AlertReportList/index.tsx:355 msgid "Active" msgstr "Активен" @@ -1075,7 +1075,7 @@ msgstr "Адаптивное форматирование" msgid "Add" msgstr "Добавить" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 msgid "Add Alert" msgstr "Добавить оповещение" @@ -1111,7 +1111,7 @@ msgstr "Добавить запись" msgid "Add Metric" msgstr "Добавить меру" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 msgid "Add Report" msgstr "Добавить рассылку" @@ -1233,7 +1233,7 @@ msgstr "Добавить цветовое форматирование" msgid "Add new formatter" msgstr "Добавить форматирование" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:374 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add notification method" msgstr "Добавить способ уведомления" @@ -1337,7 +1337,7 @@ msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:768 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" @@ -1469,11 +1469,11 @@ msgstr "оповещение" msgid "Alert Triggered, In Grace Period" msgstr "Оповещение сработало во время перерыва" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 msgid "Alert condition" msgstr "Условие оповещения" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Alert condition schedule" msgstr "Расписание условия оповещения" @@ -1493,7 +1493,7 @@ msgstr "Оповещение сработало во время перерыва msgid "Alert found an error while executing a query." msgstr "Возникла ошибка при выполнении запроса для оповещения." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 msgid "Alert name" msgstr "Имя оповещения" @@ -1756,7 +1756,7 @@ msgstr "Движок должен быть указан при передаче #: 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/PropertiesModal/index.tsx:128 #: 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 @@ -2280,7 +2280,7 @@ msgstr "Не удалось удалить аннотации." msgid "Any" msgstr "Любой" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:729 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:726 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:393 msgid "Any additional detail to show in the certification tooltip." msgstr "Любые дополнительные сведения для всплывающей подсказки" @@ -2335,7 +2335,7 @@ msgstr "" "Применное скользязее окно не вернуло данных. Убедитесь, что исходный " "запрос удовлетворяет минимальному количеству периодов скользящего окна." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:113 #: 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 @@ -2675,7 +2675,7 @@ msgstr "" msgid "Basic" msgstr "Базовая настройка" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:682 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:679 #: 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 @@ -3096,7 +3096,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:646 #: 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 @@ -3238,7 +3238,7 @@ msgstr "По центру" msgid "Centroid (Longitude and Latitude): " msgstr "Центроид (Долгота и Широта): " -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:709 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 msgid "Certification" msgstr "Утверждение" @@ -3247,7 +3247,7 @@ msgstr "Утверждение" #: 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/dashboard/components/PropertiesModal/index.tsx:720 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 msgid "Certification details" @@ -3266,7 +3266,7 @@ msgstr "Кем утверждено" #: 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/dashboard/components/PropertiesModal/index.tsx:711 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 msgid "Certified by" @@ -3365,7 +3365,7 @@ 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/alerts/AlertReportModal.tsx:406 #: 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 @@ -3998,7 +3998,7 @@ msgid "" "cell against the other cells in the selected range: " msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:500 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 msgid "Colors" msgstr "Цвета" @@ -4317,7 +4317,7 @@ msgstr "" msgid "Compute the contribution to the total" msgstr "Вычислить вклад в общую сумму (долю)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 msgid "Condition" msgstr "Условие" @@ -4915,7 +4915,7 @@ msgstr "Темно-голубой" msgid "Dark mode" msgstr "Темная тема" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/home/DashboardTable.tsx:194 #: superset-frontend/src/features/home/RightMenu.tsx:228 #: superset-frontend/src/pages/DashboardList/index.tsx:672 @@ -4956,11 +4956,11 @@ msgstr "Дашборд импортирован" msgid "Dashboard parameters are invalid." msgstr "Неверные параметры дашборда" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:639 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 msgid "Dashboard properties" msgstr "Свойства дашборда" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:447 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 msgid "Dashboard properties updated" msgstr "Свойства дашборда обновлены" @@ -6426,7 +6426,7 @@ msgstr "Толщина ребра" msgid "Edit" msgstr "Редактировать" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 msgid "Edit Alert" msgstr "Редактировать оповещение" @@ -6478,7 +6478,7 @@ msgstr "Редактировать меру" msgid "Edit Plugin" msgstr "Редактировать плагин" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:378 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 msgid "Edit Report" msgstr "Редактировать отчет" @@ -6841,8 +6841,8 @@ msgid "Equal to (=)" msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:140 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:295 #: 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 @@ -7821,7 +7821,7 @@ msgstr "Золотой" msgid "Google Sheet Name and URL" msgstr "Имя или URL Google Таблицы" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Grace period" msgstr "Перерыв между оповещением" @@ -8122,7 +8122,7 @@ msgstr "" "делать), Заменить (удалить и воссоздать таблицу) или Добавить (вставить " "данные)." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 msgid "Ignore cache when generating screenshot" msgstr "Игнорировать кэш при создании скриншота" @@ -8560,12 +8560,12 @@ msgstr "JSON" msgid "JSON Metadata" msgstr "JSON Метаданные" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:776 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:773 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:336 msgid "JSON metadata" msgstr "JSON метаданные" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 msgid "JSON metadata is invalid!" msgstr "JSON метаданные не валидны!" @@ -9164,7 +9164,7 @@ msgstr "создать новый график" msgid "Log Scale" msgstr "Логарифмическая шкала" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 msgid "Log retention" msgstr "Хранение журнала" @@ -10391,7 +10391,7 @@ msgstr "Размер вершины" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 msgid "None" msgstr "Пусто" @@ -10440,7 +10440,7 @@ msgstr "Не равно (≠)" msgid "Not in" msgstr "аннотация" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:120 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 msgid "Not null" msgstr "Не пусто" @@ -10457,7 +10457,7 @@ msgstr "Не актуально" msgid "Nothing triggered" msgstr "Не срабатывало" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 #: superset-frontend/src/pages/AlertReportList/index.tsx:302 msgid "Notification method" msgstr "Способ уведомления" @@ -11017,12 +11017,12 @@ msgstr "Владелец" #: 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:477 #: 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/dashboard/components/PropertiesModal/index.tsx:524 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:528 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:254 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 #: superset-frontend/src/pages/DatasetList/index.tsx:400 @@ -11040,8 +11040,8 @@ msgstr "Неверный список владельцев" msgid "Owners is a list of users who can alter the dashboard." msgstr "Владельцы – это список пользователей, которые могут изменять дашборд." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:494 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:542 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:491 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:539 msgid "" "Owners is a list of users who can alter the dashboard. Searchable by name" " or username." @@ -11234,7 +11234,7 @@ msgstr "Периоды должны быть целым числом" msgid "Person or group that has certified this chart." msgstr "Лицо или группа, которые утвердили этот график" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:718 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 msgid "Person or group that has certified this dashboard." msgstr "Лицо или группа, которые утвердили этот дашборд" @@ -11373,7 +11373,7 @@ msgstr "Пиксели" msgid "Plain" msgstr "Отобразить все" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:795 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 msgid "Please DO NOT overwrite the \"filter_scopes\" key." msgstr "" @@ -12382,11 +12382,11 @@ msgstr "Сообщить об ошибке" msgid "Report failed" msgstr "Рассылка не удалась" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 msgid "Report name" msgstr "Имя отчета" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 msgid "Report schedule" msgstr "Расписание отчета" @@ -12588,6 +12588,7 @@ msgstr "" #: 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:545 #: 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 @@ -12597,7 +12598,7 @@ msgstr "" msgid "Roles" msgstr "Роли" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:562 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:559 #, fuzzy msgid "" "Roles is a list which defines access to the dashboard. Granting a role " @@ -12857,7 +12858,7 @@ msgstr "" " Обратите внимание, что перед этим вам нужно будет закрыть другие окна " "Лаборатории SQL." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 #: superset-frontend/src/features/home/SavedQueries.tsx:261 msgid "SQL Query" msgstr "SQL запрос" @@ -12999,7 +13000,7 @@ msgstr "Суббота" #: 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/PropertiesModal/index.tsx:113 #: 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 @@ -13018,7 +13019,7 @@ msgstr "Суббота" #: 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/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 @@ -13203,7 +13204,7 @@ msgstr "Запланировать рассылку по почте" msgid "Schedule query" msgstr "Сохранить запрос" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 msgid "Schedule settings" msgstr "Настройки расписания" @@ -13649,15 +13650,15 @@ msgstr "" "Выберите значения в обязательных полях на панели управления. Затем " "запустите запрос, нажав на кнопку %s." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 msgid "Send as CSV" msgstr "Отправить в формате CSV" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:406 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 msgid "Send as PNG" msgstr "Отправить в формате PNG" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 msgid "Send as text" msgstr "Отправить текстом" @@ -15032,7 +15033,7 @@ msgid "Tagged Object could not be deleted." msgstr "Не удалось удалить датасет" #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:736 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:733 #: 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 @@ -15234,7 +15235,7 @@ msgid "" "[country] column" msgstr "Код страны, который Суперсет ожидает найти в столбце со страной" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:465 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 msgid "The dashboard has been saved" msgstr "Дашборд сохранен" @@ -15700,7 +15701,7 @@ msgstr "" msgid "The query contains one or more malformed template parameters." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:108 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 msgid "The query couldn't be loaded" msgstr "Запрос невозможно загрузить" @@ -16197,7 +16198,7 @@ msgstr "" "Эти параметры генерируются автоматически при нажатии кнопки сохранения. " "Опытные пользователи могут изменить определенные объекты в формате JSON." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:789 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:786 #: superset/views/dashboard/mixin.py:58 msgid "" "This JSON object is generated dynamically when clicking the save or " @@ -16300,7 +16301,7 @@ msgstr "" "В настоящий момент дашборд обновляется; следующее обновление будет через " "%s" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:661 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 msgid "This dashboard is managed externally, and can't be edited in Superset" msgstr "" @@ -16517,7 +16518,7 @@ msgstr "" msgid "Threshold alpha level for determining significance" msgstr "Пороговый альфа-уровень для определения значимости" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 msgid "Threshold value should be double precision number" msgstr "Пороговое значение должно быть числом двойной точности" @@ -16720,7 +16721,7 @@ msgstr "Единица времени отсутствует" msgid "Time granularity" msgstr "Гранулярность времени" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 msgid "Time in seconds" msgstr "Время в секундах" @@ -16897,7 +16898,7 @@ msgstr "Крошечный" #: 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/PropertiesModal/index.tsx:684 #: 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 @@ -16961,7 +16962,7 @@ msgstr "Сверху справа" msgid "Top to Bottom" msgstr "Сверху вниз" -#: superset/viz.py:1010 +#: superset/viz.py:1047 #, fuzzy msgid "Total" msgstr "Показывать общий итог" @@ -17050,7 +17051,7 @@ msgstr "Тенденция" msgid "Triangle" msgstr "Треугольник" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 msgid "Trigger Alert If..." msgstr "Оповестить, если..." @@ -17186,7 +17187,7 @@ msgstr "Параметры URL" msgid "URL parameters" msgstr "Параметры URL" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:696 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 msgid "URL slug" msgstr "Читаемый URL" @@ -17483,7 +17484,7 @@ msgstr "Загрузить файл в базу данных" msgid "Usage" msgstr "Огромный" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:802 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 #, python-format msgid "Use \"%(menuName)s\" menu instead." msgstr "Использовать меню \"%(menuName)s\" взамен." @@ -17665,7 +17666,7 @@ msgstr "" #: 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/features/alerts/AlertReportModal.tsx:393 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 msgid "Value" msgstr "Значение" @@ -18546,7 +18547,7 @@ msgstr "Поворот текста" msgid "Working" msgstr "Обрабатывается" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 msgid "Working timeout" msgstr "Время на рассылку" @@ -19068,7 +19069,7 @@ msgstr "" msgid "Your query could not be saved" msgstr "Не удалось сохранить ваш запрос" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:179 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 msgid "Your query could not be scheduled" msgstr "Не удалось запланировать ваш запрос" @@ -19076,7 +19077,7 @@ msgstr "Не удалось запланировать ваш запрос" msgid "Your query could not be updated" msgstr "Не удалось обновить ваш запрос" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:172 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 msgid "" "Your query has been scheduled. To see details of your query, navigate to " "Saved queries" @@ -20136,7 +20137,7 @@ msgstr "сохраненные(ых) запросы(ов)" msgid "search by tags" msgstr "Показать в виде таблицы" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 msgid "seconds" msgstr "секунд" diff --git a/superset/translations/sk/LC_MESSAGES/messages.po b/superset/translations/sk/LC_MESSAGES/messages.po index eb9b61c5f0c12..1e77a472268a3 100644 --- a/superset/translations/sk/LC_MESSAGES/messages.po +++ b/superset/translations/sk/LC_MESSAGES/messages.po @@ -116,7 +116,7 @@ msgstr "" msgid " to visualize your data." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:116 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 msgid "!= (Is not equal)" msgstr "" @@ -606,7 +606,7 @@ msgstr "" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 msgid "30 days" msgstr "" @@ -682,7 +682,7 @@ msgstr "" msgid "6 hour" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:135 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 msgid "60 days" msgstr "" @@ -708,7 +708,7 @@ msgstr "" msgid "9/91 percentiles" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:139 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 msgid "90 days" msgstr "" @@ -716,11 +716,11 @@ msgstr "" msgid ":" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:96 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 msgid "< (Smaller than)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:104 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 msgid "<= (Smaller or equal)" msgstr "" @@ -745,15 +745,15 @@ msgstr "" msgid "" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:112 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 msgid "== (Is equal)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:100 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 msgid "> (Larger than)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:108 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 msgid ">= (Larger or equal)" msgstr "" @@ -803,7 +803,7 @@ msgid "" "empty will allow embedding from any domain." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:755 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:752 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:445 msgid "A list of tags that have been applied to this chart." msgstr "" @@ -834,7 +834,7 @@ msgid "" " rather than its radius or sweep angle." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:700 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 msgid "A readable URL for your dashboard" msgstr "" @@ -889,7 +889,7 @@ msgstr "" msgid "A timeout occurred while taking a screenshot." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:299 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 msgid "A valid color scheme is required" msgstr "" @@ -923,8 +923,8 @@ msgstr "" msgid "About" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:479 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:522 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:476 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:519 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:411 msgid "Access" msgstr "" @@ -969,7 +969,7 @@ msgstr "" msgid "Actions" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:386 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 #: superset-frontend/src/pages/AlertReportList/index.tsx:355 msgid "Active" msgstr "" @@ -1009,7 +1009,7 @@ msgstr "" msgid "Add" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 msgid "Add Alert" msgstr "" @@ -1045,7 +1045,7 @@ msgstr "" msgid "Add Metric" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 msgid "Add Report" msgstr "" @@ -1166,7 +1166,7 @@ msgstr "" msgid "Add new formatter" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:374 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add notification method" msgstr "" @@ -1270,7 +1270,7 @@ msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:768 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" @@ -1396,11 +1396,11 @@ msgstr "" msgid "Alert Triggered, In Grace Period" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 msgid "Alert condition" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Alert condition schedule" msgstr "" @@ -1420,7 +1420,7 @@ msgstr "" msgid "Alert found an error while executing a query." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 msgid "Alert name" msgstr "" @@ -1673,7 +1673,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:128 #: 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 @@ -2174,7 +2174,7 @@ msgstr "" msgid "Any" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:729 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:726 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:393 msgid "Any additional detail to show in the certification tooltip." msgstr "" @@ -2221,7 +2221,7 @@ msgid "" "source query satisfies the minimum periods defined in the rolling window." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:113 #: 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 @@ -2552,7 +2552,7 @@ msgstr "" msgid "Basic" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:682 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:679 #: 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 @@ -2939,7 +2939,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:646 #: 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 @@ -3079,7 +3079,7 @@ msgstr "" msgid "Centroid (Longitude and Latitude): " msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:709 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 msgid "Certification" msgstr "" @@ -3088,7 +3088,7 @@ msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:720 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 msgid "Certification details" @@ -3107,7 +3107,7 @@ msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:711 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 msgid "Certified by" @@ -3201,7 +3201,7 @@ 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/alerts/AlertReportModal.tsx:406 #: 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 @@ -3819,7 +3819,7 @@ msgid "" "cell against the other cells in the selected range: " msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:500 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 msgid "Colors" msgstr "" @@ -4113,7 +4113,7 @@ msgstr "" msgid "Compute the contribution to the total" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 msgid "Condition" msgstr "" @@ -4699,7 +4699,7 @@ msgstr "" msgid "Dark mode" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/home/DashboardTable.tsx:194 #: superset-frontend/src/features/home/RightMenu.tsx:228 #: superset-frontend/src/pages/DashboardList/index.tsx:672 @@ -4741,11 +4741,11 @@ msgstr "Importovať dashboard" msgid "Dashboard parameters are invalid." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:639 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 msgid "Dashboard properties" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:447 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 msgid "Dashboard properties updated" msgstr "" @@ -6132,7 +6132,7 @@ msgstr "" msgid "Edit" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 msgid "Edit Alert" msgstr "" @@ -6184,7 +6184,7 @@ msgstr "" msgid "Edit Plugin" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:378 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 msgid "Edit Report" msgstr "" @@ -6539,8 +6539,8 @@ msgid "Equal to (=)" msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:140 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:295 #: 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 @@ -7489,7 +7489,7 @@ msgstr "" msgid "Google Sheet Name and URL" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Grace period" msgstr "" @@ -7763,7 +7763,7 @@ msgid "" " and recreate table) or Append (insert data)." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 msgid "Ignore cache when generating screenshot" msgstr "" @@ -8181,12 +8181,12 @@ msgstr "" msgid "JSON Metadata" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:776 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:773 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:336 msgid "JSON metadata" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 msgid "JSON metadata is invalid!" msgstr "" @@ -8748,7 +8748,7 @@ msgstr "" msgid "Log Scale" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 msgid "Log retention" msgstr "" @@ -9929,7 +9929,7 @@ msgstr "" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 msgid "None" msgstr "" @@ -9977,7 +9977,7 @@ msgstr "" msgid "Not in" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:120 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 msgid "Not null" msgstr "" @@ -9994,7 +9994,7 @@ msgstr "" msgid "Nothing triggered" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 #: superset-frontend/src/pages/AlertReportList/index.tsx:302 msgid "Notification method" msgstr "" @@ -10522,12 +10522,12 @@ msgstr "" #: 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:477 #: 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/dashboard/components/PropertiesModal/index.tsx:524 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:528 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:254 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 #: superset-frontend/src/pages/DatasetList/index.tsx:400 @@ -10545,8 +10545,8 @@ msgstr "" msgid "Owners is a list of users who can alter the dashboard." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:494 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:542 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:491 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:539 msgid "" "Owners is a list of users who can alter the dashboard. Searchable by name" " or username." @@ -10734,7 +10734,7 @@ msgstr "" msgid "Person or group that has certified this chart." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:718 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 msgid "Person or group that has certified this dashboard." msgstr "" @@ -10869,7 +10869,7 @@ msgstr "" msgid "Plain" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:795 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 msgid "Please DO NOT overwrite the \"filter_scopes\" key." msgstr "" @@ -11844,11 +11844,11 @@ msgstr "" msgid "Report failed" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 msgid "Report name" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 msgid "Report schedule" msgstr "" @@ -12048,6 +12048,7 @@ msgstr "" #: 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:545 #: 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 @@ -12057,7 +12058,7 @@ msgstr "" msgid "Roles" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:562 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:559 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 " @@ -12294,7 +12295,7 @@ msgid "" "Note that you will need to close other SQL Lab windows before you do this." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 #: superset-frontend/src/features/home/SavedQueries.tsx:261 msgid "SQL Query" msgstr "" @@ -12436,7 +12437,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:113 #: 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 @@ -12455,7 +12456,7 @@ msgstr "" #: 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/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 @@ -12642,7 +12643,7 @@ msgstr "" msgid "Schedule query" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 msgid "Schedule settings" msgstr "" @@ -13078,15 +13079,15 @@ msgid "" "query by clicking on the %s button." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 msgid "Send as CSV" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:406 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 msgid "Send as PNG" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 msgid "Send as text" msgstr "" @@ -14408,7 +14409,7 @@ msgid "Tagged Object could not be deleted." msgstr "" #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:736 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:733 #: 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 @@ -14596,7 +14597,7 @@ msgid "" "[country] column" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:465 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 msgid "The dashboard has been saved" msgstr "" @@ -14997,7 +14998,7 @@ msgstr "" msgid "The query contains one or more malformed template parameters." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:108 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 msgid "The query couldn't be loaded" msgstr "" @@ -15447,7 +15448,7 @@ msgid "" "parameters." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:789 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:786 #: superset/views/dashboard/mixin.py:58 msgid "" "This JSON object is generated dynamically when clicking the save or " @@ -15540,7 +15541,7 @@ msgid "" "be in %s." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:661 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 msgid "This dashboard is managed externally, and can't be edited in Superset" msgstr "" @@ -15738,7 +15739,7 @@ msgstr "" msgid "Threshold alpha level for determining significance" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 msgid "Threshold value should be double precision number" msgstr "" @@ -15933,7 +15934,7 @@ msgstr "" msgid "Time granularity" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 msgid "Time in seconds" msgstr "" @@ -16094,7 +16095,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:684 #: 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 @@ -16158,7 +16159,7 @@ msgstr "" msgid "Top to Bottom" msgstr "" -#: superset/viz.py:1010 +#: superset/viz.py:1047 msgid "Total" msgstr "" @@ -16246,7 +16247,7 @@ msgstr "" msgid "Triangle" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 msgid "Trigger Alert If..." msgstr "" @@ -16375,7 +16376,7 @@ msgstr "" msgid "URL parameters" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:696 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 msgid "URL slug" msgstr "" @@ -16654,7 +16655,7 @@ msgstr "" msgid "Usage" msgstr "Spravovať" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:802 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 #, python-format msgid "Use \"%(menuName)s\" menu instead." msgstr "" @@ -16827,7 +16828,7 @@ msgstr "" #: 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/features/alerts/AlertReportModal.tsx:393 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 msgid "Value" msgstr "" @@ -17647,7 +17648,7 @@ msgstr "" msgid "Working" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 msgid "Working timeout" msgstr "" @@ -18135,7 +18136,7 @@ msgstr "" msgid "Your query could not be saved" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:179 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 msgid "Your query could not be scheduled" msgstr "" @@ -18143,7 +18144,7 @@ msgstr "" msgid "Your query could not be updated" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:172 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 msgid "" "Your query has been scheduled. To see details of your query, navigate to " "Saved queries" @@ -19175,7 +19176,7 @@ msgstr "Uložené dotazy" msgid "search by tags" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 msgid "seconds" msgstr "" diff --git a/superset/translations/sl/LC_MESSAGES/messages.po b/superset/translations/sl/LC_MESSAGES/messages.po index c36d4a17e8ad1..dcfd79d6bacc2 100644 --- a/superset/translations/sl/LC_MESSAGES/messages.po +++ b/superset/translations/sl/LC_MESSAGES/messages.po @@ -140,7 +140,7 @@ msgstr "" msgid " to visualize your data." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:116 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 msgid "!= (Is not equal)" msgstr "!= (ni enako)" @@ -678,7 +678,7 @@ msgstr "" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 msgid "30 days" msgstr "30 dni" @@ -758,7 +758,7 @@ msgstr "Teden z začetkom v ponedeljek" msgid "6 hour" msgstr "6 ur" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:135 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 msgid "60 days" msgstr "60 dni" @@ -785,7 +785,7 @@ msgstr "" msgid "9/91 percentiles" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:139 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 msgid "90 days" msgstr "90 dni" @@ -793,11 +793,11 @@ msgstr "90 dni" msgid ":" msgstr ":" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:96 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 msgid "< (Smaller than)" msgstr "< (manjše kot)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:104 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 msgid "<= (Smaller or equal)" msgstr "<= (manjše ali enako)" @@ -826,15 +826,15 @@ msgstr "Prostorski" msgid "" msgstr "Način razvrščanja" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:112 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 msgid "== (Is equal)" msgstr "== (je enako)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:100 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 msgid "> (Larger than)" msgstr "> (večje kot)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:108 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 msgid ">= (Larger or equal)" msgstr ">= (večje ali enako)" @@ -890,7 +890,7 @@ msgstr "" "Seznam imen domen, ki lahko vgradijo to nadzorno ploščo. Če polje ostane " "prazno, je vgrajevanje dovoljeno iz vseh domen." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:755 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:752 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:445 #, fuzzy msgid "A list of tags that have been applied to this chart." @@ -929,7 +929,7 @@ msgstr "" "izseke, vrednosti pa so ponazorjene s ploščino izseka (namesto polmera " "ali kota)." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:700 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 msgid "A readable URL for your dashboard" msgstr "Berljiv URL za vašo nadzorno ploščo" @@ -991,7 +991,7 @@ msgstr "Pri ustvarjanju podatkovnega okvira je potekel čas." msgid "A timeout occurred while taking a screenshot." msgstr "Pri ustvarjanju zaslonske slike je potekel čas." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:299 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 msgid "A valid color scheme is required" msgstr "Zahtevana je veljavna barvna shema" @@ -1025,8 +1025,8 @@ msgstr "POLOŽAJ OZNAKE OSI" msgid "About" msgstr "O programu" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:479 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:522 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:476 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:519 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:411 msgid "Access" msgstr "Dostop" @@ -1072,7 +1072,7 @@ msgstr "Dnevnik aktivnosti" msgid "Actions" msgstr "Aktivnosti" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:386 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 #: superset-frontend/src/pages/AlertReportList/index.tsx:355 msgid "Active" msgstr "Aktiven" @@ -1115,7 +1115,7 @@ msgstr "Adaptivno oblikovanje" msgid "Add" msgstr "Dodaj" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 msgid "Add Alert" msgstr "Dodaj opozorilo" @@ -1151,7 +1151,7 @@ msgstr "Dodaj dnevnik" msgid "Add Metric" msgstr "Dodaj mero" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 msgid "Add Report" msgstr "Dodaj poročilo" @@ -1277,7 +1277,7 @@ msgstr "Dodaj novo oblikovanje barve" msgid "Add new formatter" msgstr "Dodaj novo oblikovanje" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:374 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add notification method" msgstr "Dodajte način obveščanja" @@ -1383,7 +1383,7 @@ msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:768 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" @@ -1515,11 +1515,11 @@ msgstr "opozorilo" msgid "Alert Triggered, In Grace Period" msgstr "Opozorilo sproženo, v obdobju mirovanja" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 msgid "Alert condition" msgstr "Status opozorila" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Alert condition schedule" msgstr "Urnik statusov opozoril" @@ -1539,7 +1539,7 @@ msgstr "Opozorilo sproženo med obdobjem mirovanja." msgid "Alert found an error while executing a query." msgstr "Opozorilo je našlo napako pri izvajanju poizvedbe." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 msgid "Alert name" msgstr "Naslov opozorila" @@ -1813,7 +1813,7 @@ msgstr "" #: 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/PropertiesModal/index.tsx:128 #: 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 @@ -2341,7 +2341,7 @@ msgstr "Oznak ni mogoče izbrisati." msgid "Any" msgstr "Katerikoli" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:729 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:726 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:393 msgid "Any additional detail to show in the certification tooltip." msgstr "Dodatne podrobnosti za prikaz v certifikacijskem orodju." @@ -2396,7 +2396,7 @@ msgstr "" "Izbrano drseče okno ni vrnilo podatkov. Poskrbite, da izvorna poizvedba " "ustreza minimalni periodi drsečega okna." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:113 #: 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 @@ -2740,7 +2740,7 @@ msgstr "" msgid "Basic" msgstr "Osnovno" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:682 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:679 #: 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 @@ -3159,7 +3159,7 @@ msgstr "Ne sme imeti prekrivanja med podatkovnimi serijami in členitvami" #: 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/PropertiesModal/index.tsx:646 #: 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 @@ -3305,7 +3305,7 @@ msgstr "Na sredino" msgid "Centroid (Longitude and Latitude): " msgstr "Neveljavna zemljepisna dolžina/širina" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:709 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 msgid "Certification" msgstr "Certifikacija" @@ -3314,7 +3314,7 @@ msgstr "Certifikacija" #: 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/dashboard/components/PropertiesModal/index.tsx:720 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 msgid "Certification details" @@ -3333,7 +3333,7 @@ msgstr "Certificiral/a" #: 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/dashboard/components/PropertiesModal/index.tsx:711 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 msgid "Certified by" @@ -3433,7 +3433,7 @@ 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/alerts/AlertReportModal.tsx:406 #: 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 @@ -4084,7 +4084,7 @@ msgid "" "cell against the other cells in the selected range: " msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:500 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 msgid "Colors" msgstr "Barve" @@ -4414,7 +4414,7 @@ msgstr "Združi več plasti za oblikovanje kompleksnih vizualizacij." msgid "Compute the contribution to the total" msgstr "Izračunaj prispevek k celoti" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 msgid "Condition" msgstr "Pogoj" @@ -5019,7 +5019,7 @@ msgstr "" msgid "Dark mode" msgstr "Temni način" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/home/DashboardTable.tsx:194 #: superset-frontend/src/features/home/RightMenu.tsx:228 #: superset-frontend/src/pages/DashboardList/index.tsx:672 @@ -5060,11 +5060,11 @@ msgstr "Nadzorna plošča uvožena" msgid "Dashboard parameters are invalid." msgstr "Parametri nadzorne plošče so neveljavni." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:639 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 msgid "Dashboard properties" msgstr "Lastnosti nadzorne plošče" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:447 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 msgid "Dashboard properties updated" msgstr "Lastnosti nadzorne plošče posodobljene" @@ -6540,7 +6540,7 @@ msgstr "Debelina povezave" msgid "Edit" msgstr "Urejanje" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 msgid "Edit Alert" msgstr "Uredi opozorilo" @@ -6593,7 +6593,7 @@ msgstr "Uredi mero" msgid "Edit Plugin" msgstr "Uredi vtičnik" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:378 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 msgid "Edit Report" msgstr "Uredi poročilo" @@ -6960,8 +6960,8 @@ msgid "Equal to (=)" msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:140 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:295 #: 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 @@ -7959,7 +7959,7 @@ msgstr "" msgid "Google Sheet Name and URL" msgstr "Ime Googlove preglednice in URL" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Grace period" msgstr "Obdobje mirovanja" @@ -8260,7 +8260,7 @@ msgstr "" "Če tabela obstaja, naredite nekaj od sledečega: Prekini (ne naredi nič), " "Zamenjaj (zbriši in ponovno ustvari tabelo) ali Dodaj (vstavi podatke)." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 #, fuzzy msgid "Ignore cache when generating screenshot" msgstr "" @@ -8708,12 +8708,12 @@ msgstr "JSON" msgid "JSON Metadata" msgstr "JSON metapodatki" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:776 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:773 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:336 msgid "JSON metadata" msgstr "JSON metapodatki" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 #, fuzzy msgid "JSON metadata is invalid!" msgstr "json ni veljaven" @@ -9319,7 +9319,7 @@ msgstr "ustvarite nov grafikon" msgid "Log Scale" msgstr "Logaritemska skala" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 msgid "Log retention" msgstr "Hranjenje dnevnikov" @@ -10560,7 +10560,7 @@ msgstr "Velikost vozlišča" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 msgid "None" msgstr "Brez" @@ -10612,7 +10612,7 @@ msgstr "!= (ni enako)" msgid "Not in" msgstr "oznaka" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:120 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 msgid "Not null" msgstr "Ni nič (null)" @@ -10629,7 +10629,7 @@ msgstr "Ni posodobljeno" msgid "Nothing triggered" msgstr "Ni ni sproženo" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 #: superset-frontend/src/pages/AlertReportList/index.tsx:302 msgid "Notification method" msgstr "Način obveščanja" @@ -11200,12 +11200,12 @@ msgstr "Lastnik" #: 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:477 #: 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/dashboard/components/PropertiesModal/index.tsx:524 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:528 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:254 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 #: superset-frontend/src/pages/DatasetList/index.tsx:400 @@ -11223,8 +11223,8 @@ msgstr "Lastniki niso veljavni" msgid "Owners is a list of users who can alter the dashboard." msgstr "\"Lastniki\" je seznam uporabnikov, ki lahko spreminjajo nadzorno ploščo." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:494 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:542 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:491 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:539 msgid "" "Owners is a list of users who can alter the dashboard. Searchable by name" " or username." @@ -11419,7 +11419,7 @@ msgstr "Periode morajo biti celo število" msgid "Person or group that has certified this chart." msgstr "Oseba ali skupina, ki je certificirala ta grafikon." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:718 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 msgid "Person or group that has certified this dashboard." msgstr "Oseba ali skupina, ki je certificirala to nadzorno ploščo." @@ -11557,7 +11557,7 @@ msgstr "" msgid "Plain" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:795 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 msgid "Please DO NOT overwrite the \"filter_scopes\" key." msgstr "" @@ -12587,11 +12587,11 @@ msgstr "Sporočite napako" msgid "Report failed" msgstr "Poročilo ni uspelo" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 msgid "Report name" msgstr "Naslov poročila" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 msgid "Report schedule" msgstr "Urnik poročanja" @@ -12798,6 +12798,7 @@ msgstr "" #: 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:545 #: 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 @@ -12807,7 +12808,7 @@ msgstr "" msgid "Roles" msgstr "Vloge" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:562 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:559 #, fuzzy msgid "" "Roles is a list which defines access to the dashboard. Granting a role " @@ -13065,7 +13066,7 @@ msgstr "" "Shrani.\n" "Pred tem morate zapreti druga okna SQL laboratorija." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 #: superset-frontend/src/features/home/SavedQueries.tsx:261 msgid "SQL Query" msgstr "SQL poizvedba" @@ -13216,7 +13217,7 @@ msgstr "Sobota" #: 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/PropertiesModal/index.tsx:113 #: 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 @@ -13235,7 +13236,7 @@ msgstr "Sobota" #: 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/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 @@ -13425,7 +13426,7 @@ msgstr "Dodaj e-poštno poročilo na urnik" msgid "Schedule query" msgstr "Urnik poizvedb" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 msgid "Schedule settings" msgstr "Nastavitve urnika" @@ -13889,15 +13890,15 @@ msgstr "" "Izberite vrednosti v osvetljenih poljih na levi strani kontrolnika in " "zaženite poizvedbo z gumbom %s." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 msgid "Send as CSV" msgstr "Pošlji kot CSV" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:406 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 msgid "Send as PNG" msgstr "Pošlji kot PNG" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 msgid "Send as text" msgstr "Pošlji kot besedilo" @@ -15293,7 +15294,7 @@ msgid "Tagged Object could not be deleted." msgstr "Podatkovnega niza ni mogoče izbrisati." #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:736 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:733 #: 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 @@ -15503,7 +15504,7 @@ msgid "" "[country] column" msgstr "Standard za oznake držav, ki bodo podane v stolpcu z državami" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:465 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 msgid "The dashboard has been saved" msgstr "Nadzorna plošča je bila shranjena" @@ -15982,7 +15983,7 @@ msgstr "" msgid "The query contains one or more malformed template parameters." msgstr "Poizvedba vsebuje enega ali več parametrov predlog z napačno obliko." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:108 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 msgid "The query couldn't be loaded" msgstr "Poizvedbe ni mogoče naložiti" @@ -16489,7 +16490,7 @@ msgstr "" "raziskovalnem pogledu. Ta JSON objekt je prikazan kot vzorec za napredne " "uporabnike, ki želijo spreminjati posamezne parametre." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:789 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:786 #: superset/views/dashboard/mixin.py:58 msgid "" "This JSON object is generated dynamically when clicking the save or " @@ -16597,7 +16598,7 @@ msgstr "" "Nadzorna plošča se trenutno samodejno osvežuje. Naslednja samodejna " "osvežitev bo čez %s." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:661 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 msgid "This dashboard is managed externally, and can't be edited in Superset" msgstr "Ta nadzorna plošča se ne ureja znotraj Superseta" @@ -16829,7 +16830,7 @@ msgstr "To bo odstranilo trenutno konfiguracijo za vgrajevanje." msgid "Threshold alpha level for determining significance" msgstr "Mejna vrednost alfa za določanje značilnosti" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 msgid "Threshold value should be double precision number" msgstr "Mejna vrednost naj bo število z dvojno natančnostjo (double)" @@ -17029,7 +17030,7 @@ msgstr "Časovna granulacija manjka" msgid "Time granularity" msgstr "Granulacija časa" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 msgid "Time in seconds" msgstr "Čas v sekundah" @@ -17211,7 +17212,7 @@ msgstr "Drobna" #: 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/PropertiesModal/index.tsx:684 #: 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 @@ -17277,7 +17278,7 @@ msgstr "desno" msgid "Top to Bottom" msgstr "Iz vrha proti dnu" -#: superset/viz.py:1010 +#: superset/viz.py:1047 #, fuzzy msgid "Total" msgstr "Pokaži vsote" @@ -17366,7 +17367,7 @@ msgstr "Trend" msgid "Triangle" msgstr "Trikotnik" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 msgid "Trigger Alert If..." msgstr "Sproži opozorilo v primeru ..." @@ -17501,7 +17502,7 @@ msgstr "Parametri URL" msgid "URL parameters" msgstr "Parametri URL" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:696 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 msgid "URL slug" msgstr "URL slug" @@ -17795,7 +17796,7 @@ msgstr "Naloži datoteko v podatkovno bazo" msgid "Usage" msgstr "Ogromna" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:802 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 #, python-format msgid "Use \"%(menuName)s\" menu instead." msgstr "" @@ -17983,7 +17984,7 @@ msgstr "" #: 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/features/alerts/AlertReportModal.tsx:393 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 msgid "Value" msgstr "Vrednost" @@ -18902,7 +18903,7 @@ msgstr "Vrtenje besed" msgid "Working" msgstr "Delam" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 msgid "Working timeout" msgstr "Pretek delovanja" @@ -19426,7 +19427,7 @@ msgstr "Vaša nadzorna plošča je prevelika. Pred shranjevanjem jo zmanjšajte. msgid "Your query could not be saved" msgstr "Vaše poizvedbe ni mogoče shraniti" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:179 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 msgid "Your query could not be scheduled" msgstr "Vaše poizvedbe ni mogoče uvrstiti v urnik" @@ -19434,7 +19435,7 @@ msgstr "Vaše poizvedbe ni mogoče uvrstiti v urnik" msgid "Your query could not be updated" msgstr "Vaše poizvedbe ni mogoče posodobiti" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:172 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 msgid "" "Your query has been scheduled. To see details of your query, navigate to " "Saved queries" @@ -20517,7 +20518,7 @@ msgstr "shranjene poizvedbe" msgid "search by tags" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 #, fuzzy msgid "seconds" msgstr "30 sekund" diff --git a/superset/translations/zh/LC_MESSAGES/messages.po b/superset/translations/zh/LC_MESSAGES/messages.po index d3853e06a62c5..2cb9d497a1a33 100644 --- a/superset/translations/zh/LC_MESSAGES/messages.po +++ b/superset/translations/zh/LC_MESSAGES/messages.po @@ -124,7 +124,7 @@ msgstr "" msgid " to visualize your data." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:116 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 msgid "!= (Is not equal)" msgstr "!= (不等于)" @@ -628,7 +628,7 @@ msgstr "" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 msgid "30 days" msgstr "30天" @@ -708,7 +708,7 @@ msgstr "周一为一周开始" msgid "6 hour" msgstr "6小时" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:135 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 msgid "60 days" msgstr "60天" @@ -735,7 +735,7 @@ msgstr "" msgid "9/91 percentiles" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:139 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 msgid "90 days" msgstr "90天" @@ -743,11 +743,11 @@ msgstr "90天" msgid ":" msgstr ":" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:96 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 msgid "< (Smaller than)" msgstr "< (小于)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:104 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 msgid "<= (Smaller or equal)" msgstr "<= (小于等于)" @@ -776,15 +776,15 @@ msgstr "空间" msgid "" msgstr "图表类型" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:112 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 msgid "== (Is equal)" msgstr "== (等于)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:100 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 msgid "> (Larger than)" msgstr "> (大于)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:108 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 msgid ">= (Larger or equal)" msgstr ">= (大于等于)" @@ -836,7 +836,7 @@ msgid "" "empty will allow embedding from any domain." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:755 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:752 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:445 #, fuzzy msgid "A list of tags that have been applied to this chart." @@ -868,7 +868,7 @@ msgid "" " rather than its radius or sweep angle." msgstr "一种极坐标图表,其中圆被分成等角度的楔形,任何楔形表示的值由其面积表示,而不是其半径或扫掠角度。" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:700 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 msgid "A readable URL for your dashboard" msgstr "为看板生成一个可读的 URL" @@ -925,7 +925,7 @@ msgstr "生成数据超时" msgid "A timeout occurred while taking a screenshot." msgstr "截图超时" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:299 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 msgid "A valid color scheme is required" msgstr "需要有效的配色方案" @@ -960,8 +960,8 @@ msgstr "行小计的位置" msgid "About" msgstr "关于" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:479 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:522 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:476 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:519 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:411 msgid "Access" msgstr "访问" @@ -1007,7 +1007,7 @@ msgstr "操作日志" msgid "Actions" msgstr "操作" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:386 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 #: superset-frontend/src/pages/AlertReportList/index.tsx:355 msgid "Active" msgstr "激活" @@ -1050,7 +1050,7 @@ msgstr "自动匹配格式化" msgid "Add" msgstr "新增" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 msgid "Add Alert" msgstr "添加告警" @@ -1086,7 +1086,7 @@ msgstr "新增日志" msgid "Add Metric" msgstr "添加指标" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 msgid "Add Report" msgstr "添加报告" @@ -1212,7 +1212,7 @@ msgstr "添加新的颜色" msgid "Add new formatter" msgstr "新增格式化" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:374 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add notification method" msgstr "添加注释层" @@ -1318,7 +1318,7 @@ msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:768 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" @@ -1450,11 +1450,11 @@ msgstr "警报" msgid "Alert Triggered, In Grace Period" msgstr "告警已触发,在宽限期内" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 msgid "Alert condition" msgstr "告警条件" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Alert condition schedule" msgstr "告警条件计划" @@ -1474,7 +1474,7 @@ msgstr "在宽限期内触发告警。" msgid "Alert found an error while executing a query." msgstr "告警在执行查询时发现错误。" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 msgid "Alert name" msgstr "告警名称" @@ -1730,7 +1730,7 @@ msgstr "向数据库传递单个参数时必须指定引擎。" #: 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/PropertiesModal/index.tsx:128 #: 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 @@ -2230,7 +2230,7 @@ msgstr "无法删除注释。" msgid "Any" msgstr "所有" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:729 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:726 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:393 msgid "Any additional detail to show in the certification tooltip." msgstr "要在认证工具提示中显示详细信息。" @@ -2277,7 +2277,7 @@ msgid "" "source query satisfies the minimum periods defined in the rolling window." msgstr "应用的滚动窗口(rolling window)未返回任何数据。请确保源查询满足滚动窗口中定义的最小周期。" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:113 #: 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 @@ -2628,7 +2628,7 @@ msgstr "" msgid "Basic" msgstr "基础" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:682 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:679 #: 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 @@ -3032,7 +3032,7 @@ msgstr "Series 和 Breakdown 之间不能有重叠" #: 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/PropertiesModal/index.tsx:646 #: 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 @@ -3180,7 +3180,7 @@ msgstr "中心对齐" msgid "Centroid (Longitude and Latitude): " msgstr "无效的经度/纬度" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:709 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 msgid "Certification" msgstr "认证" @@ -3189,7 +3189,7 @@ msgstr "认证" #: 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/dashboard/components/PropertiesModal/index.tsx:720 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 msgid "Certification details" @@ -3208,7 +3208,7 @@ msgstr "认证" #: 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/dashboard/components/PropertiesModal/index.tsx:711 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 msgid "Certified by" @@ -3304,7 +3304,7 @@ 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/alerts/AlertReportModal.tsx:406 #: 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 @@ -3941,7 +3941,7 @@ msgid "" "cell against the other cells in the selected range: " msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:500 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 msgid "Colors" msgstr "颜色" @@ -4249,7 +4249,7 @@ msgstr "" msgid "Compute the contribution to the total" msgstr "计算对总数的贡献值" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 msgid "Condition" msgstr "条件" @@ -4857,7 +4857,7 @@ msgstr "" msgid "Dark mode" msgstr "黑暗模式" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/home/DashboardTable.tsx:194 #: superset-frontend/src/features/home/RightMenu.tsx:228 #: superset-frontend/src/pages/DashboardList/index.tsx:672 @@ -4899,11 +4899,11 @@ msgstr "看板属性" msgid "Dashboard parameters are invalid." msgstr "看板参数无效。" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:639 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 msgid "Dashboard properties" msgstr "看板属性" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:447 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 #, fuzzy msgid "Dashboard properties updated" msgstr "看板属性" @@ -6300,7 +6300,7 @@ msgstr "边缘宽度" msgid "Edit" msgstr "编辑" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 msgid "Edit Alert" msgstr "编辑警报" @@ -6353,7 +6353,7 @@ msgstr "编辑指标" msgid "Edit Plugin" msgstr "编辑插件" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:378 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 msgid "Edit Report" msgstr "编辑报表" @@ -6720,8 +6720,8 @@ msgid "Equal to (=)" msgstr "" #: 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/dashboard/components/PropertiesModal/index.tsx:140 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:295 #: 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 @@ -7713,7 +7713,7 @@ msgstr "" msgid "Google Sheet Name and URL" msgstr "Google Sheet名称和URL" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Grace period" msgstr "宽限期" @@ -8007,7 +8007,7 @@ msgid "" " and recreate table) or Append (insert data)." msgstr "如果表已存在,执行其中一个:舍弃(什么都不做),替换(删除表并重建),或者追加(插入数据)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 #, fuzzy msgid "Ignore cache when generating screenshot" msgstr "生成屏幕截图时报表计划执行失败。" @@ -8445,12 +8445,12 @@ msgstr "JSON" msgid "JSON Metadata" msgstr "JSON 元数据" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:776 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:773 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:336 msgid "JSON metadata" msgstr "JSON 元数据" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 #, fuzzy msgid "JSON metadata is invalid!" msgstr "无效 JSON" @@ -9039,7 +9039,7 @@ msgstr "创建新图表" msgid "Log Scale" msgstr "日志规模" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 msgid "Log retention" msgstr "日志保留" @@ -10265,7 +10265,7 @@ msgstr "节点大小" #: 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 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 msgid "None" msgstr "空" @@ -10317,7 +10317,7 @@ msgstr "!= (不等于)" msgid "Not in" msgstr "注释" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:120 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 msgid "Not null" msgstr "非空" @@ -10334,7 +10334,7 @@ msgstr "不是最新的" msgid "Nothing triggered" msgstr "无触发" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 #: superset-frontend/src/pages/AlertReportList/index.tsx:302 msgid "Notification method" msgstr "通知方式" @@ -10884,12 +10884,12 @@ msgstr "所有者" #: 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:477 #: 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/dashboard/components/PropertiesModal/index.tsx:524 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:528 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:254 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 #: superset-frontend/src/pages/DatasetList/index.tsx:400 @@ -10907,8 +10907,8 @@ msgstr "所有者无效" msgid "Owners is a list of users who can alter the dashboard." msgstr "所有者是可以更改看板的用户列表。" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:494 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:542 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:491 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:539 msgid "" "Owners is a list of users who can alter the dashboard. Searchable by name" " or username." @@ -11100,7 +11100,7 @@ msgstr "句点必须是正整数值" msgid "Person or group that has certified this chart." msgstr "对此图表进行认证的个人或团体。" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:718 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 msgid "Person or group that has certified this dashboard." msgstr "已对此仪表板进行认证的个人或组。" @@ -11236,7 +11236,7 @@ msgstr "" msgid "Plain" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:795 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 msgid "Please DO NOT overwrite the \"filter_scopes\" key." msgstr "" @@ -12240,11 +12240,11 @@ msgstr "报告bug" msgid "Report failed" msgstr "报告失败" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 msgid "Report name" msgstr "报告名称" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 msgid "Report schedule" msgstr "报告时间表" @@ -12453,6 +12453,7 @@ msgstr "扩展角色 %(r)s 以提供对 datasource %(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:545 #: 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 @@ -12462,7 +12463,7 @@ msgstr "扩展角色 %(r)s 以提供对 datasource %(ds)s 的访问" msgid "Roles" msgstr "角色" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:562 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:559 #, fuzzy msgid "" "Roles is a list which defines access to the dashboard. Granting a role " @@ -12704,7 +12705,7 @@ msgid "" "Note that you will need to close other SQL Lab windows before you do this." msgstr "SQL Lab使用浏览器的本地存储来存储查询和结果" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 #: superset-frontend/src/features/home/SavedQueries.tsx:261 msgid "SQL Query" msgstr "SQL查询" @@ -12857,7 +12858,7 @@ msgstr "星期六" #: 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/PropertiesModal/index.tsx:113 #: 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 @@ -12876,7 +12877,7 @@ msgstr "星期六" #: 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/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 @@ -13070,7 +13071,7 @@ msgstr "为图表配置电子邮件报告" msgid "Schedule query" msgstr "分享查询" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 msgid "Schedule settings" msgstr "计划设置" @@ -13532,15 +13533,15 @@ msgid "" "query by clicking on the %s button." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 msgid "Send as CSV" msgstr "发送为CSV" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:406 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 msgid "Send as PNG" msgstr "发送PNG" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 msgid "Send as text" msgstr "发送文本" @@ -14909,7 +14910,7 @@ msgid "Tagged Object could not be deleted." msgstr "无法删除数据集" #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:736 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:733 #: 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 @@ -15103,7 +15104,7 @@ msgid "" "[country] column" msgstr "Superset 希望能够在 [国家] 栏中找到的 国家 / 地区 的标准代码" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:465 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 msgid "The dashboard has been saved" msgstr "该看板已成功保存。" @@ -15525,7 +15526,7 @@ msgstr "找不到与这些结果相关联的查询。你需要重新运行查询 msgid "The query contains one or more malformed template parameters." msgstr "该查询包含一个或多个格式不正确的模板参数。" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:108 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 msgid "The query couldn't be loaded" msgstr "这个查询无法被加载" @@ -15986,7 +15987,7 @@ msgid "" "parameters." msgstr "这些参数是在浏览视图中单击保存或覆盖按钮时动态生成的。这个JSON对象在这里公开以供参考,并提供给可能希望更改特定参数的高级用户使用。" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:789 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:786 #: superset/views/dashboard/mixin.py:58 msgid "" "This JSON object is generated dynamically when clicking the save or " @@ -16081,7 +16082,7 @@ msgid "" "be in %s." msgstr "此看板当前正在强制刷新;下一次强制刷新将在 %s 内执行。" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:661 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 msgid "This dashboard is managed externally, and can't be edited in Superset" msgstr "" @@ -16283,7 +16284,7 @@ msgstr "" msgid "Threshold alpha level for determining significance" msgstr "确定重要性的阈值α水平" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 msgid "Threshold value should be double precision number" msgstr "" @@ -16480,7 +16481,7 @@ msgstr "时间粒度缺失" msgid "Time granularity" msgstr "时间粒度(granularity)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 msgid "Time in seconds" msgstr "时间(秒)" @@ -16646,7 +16647,7 @@ msgstr "微小" #: 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/PropertiesModal/index.tsx:684 #: 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 @@ -16712,7 +16713,7 @@ msgstr "高度" msgid "Top to Bottom" msgstr "点击回顶部" -#: superset/viz.py:1010 +#: superset/viz.py:1047 #, fuzzy msgid "Total" msgstr "显示总计" @@ -16801,7 +16802,7 @@ msgstr "趋势" msgid "Triangle" msgstr "三角形" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 msgid "Trigger Alert If..." msgstr "如果 ... 则触发警报" @@ -16934,7 +16935,7 @@ msgstr "URL参数" msgid "URL parameters" msgstr "URL 参数" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:696 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 msgid "URL slug" msgstr "使用 Slug" @@ -17219,7 +17220,7 @@ msgstr "上传文件到数据库" msgid "Usage" msgstr "巨大" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:802 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 #, python-format msgid "Use \"%(menuName)s\" menu instead." msgstr "" @@ -17393,7 +17394,7 @@ msgstr "使用圆圈来可视化系统不同阶段的数据流。" #: 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/features/alerts/AlertReportModal.tsx:393 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 msgid "Value" msgstr "值" @@ -18235,7 +18236,7 @@ msgstr "单词旋转" msgid "Working" msgstr "正在执行" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 msgid "Working timeout" msgstr "执行超时" @@ -18740,7 +18741,7 @@ msgstr "您的看板太大了。保存前请缩小尺寸。" msgid "Your query could not be saved" msgstr "您的查询无法保存" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:179 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 msgid "Your query could not be scheduled" msgstr "无法调度您的查询" @@ -18748,7 +18749,7 @@ msgstr "无法调度您的查询" msgid "Your query could not be updated" msgstr "无法更新您的查询" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:172 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 msgid "" "Your query has been scheduled. To see details of your query, navigate to " "Saved queries" @@ -19833,7 +19834,7 @@ msgstr "已保存查询" msgid "search by tags" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 #, fuzzy msgid "seconds" msgstr "30秒钟"